Project

General

Profile

1
package eu.dnetlib.data.transform;
2

    
3
/**
4
 * Created by claudio on 12/12/2016.
5
 */
6
public class OntologyTerm {
7

    
8
	private String code;
9
	private String encoding;
10
	private String englishName;
11
	private String nativeName;
12

    
13
	private String inverseCode;
14

    
15
	public static OntologyTerm newInstance() {
16
		return new OntologyTerm();
17
	}
18

    
19

    
20
	public String get
21

    
22
	public String getCode() {
23
		return code;
24
	}
25

    
26
	public String getEncoding() {
27
		return encoding;
28
	}
29

    
30
	public String getEnglishName() {
31
		return englishName;
32
	}
33

    
34
	public String getNativeName() {
35
		return nativeName;
36
	}
37

    
38
	public String getInverseCode() {
39
		return inverseCode;
40
	}
41

    
42
	public OntologyTerm setCode(final String code) {
43
		this.code = code;
44
		return this;
45
	}
46

    
47
	public OntologyTerm setEncoding(final String encoding) {
48
		this.encoding = encoding;
49
		return this;
50
	}
51

    
52
	public OntologyTerm setEnglishName(final String englishName) {
53
		this.englishName = englishName;
54
		return this;
55
	}
56

    
57
	public OntologyTerm setNativeName(final String nativeName) {
58
		this.nativeName = nativeName;
59
		return this;
60
	}
61

    
62
	public OntologyTerm setInverseCode(final String inverseCode) {
63
		this.inverseCode = inverseCode;
64
		return this;
65
	}
66

    
67
}
(6-6/8)