source: SRUAggregator/trunk/src/java/clarind/fcs/Corpus.java @ 2107

Last change on this file since 2107 was 2107, checked in by zastrow, 12 years ago
File size: 1.2 KB
Line 
1package clarind.fcs;
2
3
4public class Corpus {
5    private String value;
6    private String numberOfRecords;
7    private String displayTerm;
8    private String lang;
9   
10        public Corpus() {
11        this.value = null;
12        this.numberOfRecords = null;
13        this.displayTerm = null;
14        this.lang = null;
15    }
16
17    public Corpus(String value, String numberOfRecords, String displayTerm, String lang) {
18        this.value = value;
19        this.numberOfRecords = numberOfRecords;
20        this.displayTerm = displayTerm;
21        this.lang = lang;
22    }
23
24    public String getValue() {
25        return value;
26    }
27
28    public void setValue(String value) {
29        this.value = value;
30    }
31
32    public String getNumberOfRecords() {
33        return numberOfRecords;
34    }
35
36    public void setNumberOfRecords(String numberOfRecords) {
37        this.numberOfRecords = numberOfRecords;
38    }
39
40    public String getDisplayTerm() {
41        return displayTerm;
42    }
43
44    public void setDisplayTerm(String displayTerm) {
45        this.displayTerm = displayTerm;
46    }
47
48    public String getLang() {
49        return lang;
50    }
51
52    public void setLang(String lang) {
53        this.lang = lang;
54    }
55   
56   
57   
58   
59}
Note: See TracBrowser for help on using the repository browser.