Project

General

Profile

1 35892 claudio.at
package eu.dnetlib.functionality.modular.ui.dedup;
2
3
class EntityType {
4
5
	private String id;
6
	private String type;
7
	private String label;
8
9
	public EntityType() {};
10
11
	public EntityType(String id, String type, String label) {
12
		super();
13
		setId(id);
14
		setType(type);
15
		setLabel(label);
16
	}
17
18
	public String getId() {
19
		return id;
20
	}
21
22
	public void setId(String id) {
23
		this.id = id;
24
	}
25
26
	public String getType() {
27
		return type;
28
	}
29
30
	public void setType(String type) {
31
		this.type = type;
32
	}
33
34
	public String getLabel() {
35
		return label;
36
	}
37
38
	public void setLabel(String label) {
39
		this.label = label;
40
	}
41
42
}