Project

General

Profile

« Previous | Next » 

Revision 46422

View differences:

Vocabulary.java
9 9

  
10 10
	private String id;
11 11
	private String name;
12
	private Object object;
12 13

  
13 14
	public Vocabulary() {
14 15
	}
15 16

  
16
	public Vocabulary(String id, String name) {
17
	public Vocabulary(String id, String name,Object obj) {
17 18
		this.id = id;
18 19
		this.name = name;
20
		this.object = obj;
19 21
	}
20 22

  
21 23
	public String getId() {
......
33 35
	public void setName(String name) {
34 36
		this.name = name;
35 37
	}
38

  
39
	public Object getObject() {
40
		return object;
41
	}
42

  
43
	public void setObject(Object object) {
44
		this.object = object;
45
	}
36 46
}

Also available in: Unified diff