1
2
3
4
5
6
7
8
9 package eu.fbk.dkm.pikes.resources.ontonotes.senses;
10
11 import javax.xml.bind.annotation.*;
12 import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
13 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
14
15
16
17
18
19 @XmlAccessorType(XmlAccessType.FIELD)
20 @XmlType(name = "")
21 @XmlRootElement(name = "WORD_META")
22 public class WORDMETA {
23
24 @XmlAttribute(name = "authors", required = true)
25 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
26 protected String authors;
27 @XmlAttribute(name = "sample_score")
28 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
29 protected String sampleScore;
30
31
32
33
34
35
36
37
38
39 public String getAuthors() {
40 return authors;
41 }
42
43
44
45
46
47
48
49
50
51 public void setAuthors(String value) {
52 this.authors = value;
53 }
54
55
56
57
58
59
60
61
62
63 public String getSampleScore() {
64 return sampleScore;
65 }
66
67
68
69
70
71
72
73
74
75 public void setSampleScore(String value) {
76 this.sampleScore = value;
77 }
78
79 }