1
2
3
4
5
6
7
8
9 package eu.fbk.dkm.premon.premonitor.verbnet;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
16 import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18
19
20
21
22
23 @XmlAccessorType(XmlAccessType.FIELD)
24 @XmlType(name = "")
25 @XmlRootElement(name = "DESCRIPTION")
26 public class DESCRIPTION {
27
28 @XmlAttribute(name = "primary", required = true)
29 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
30 protected String primary;
31 @XmlAttribute(name = "secondary")
32 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
33 protected String secondary;
34 @XmlAttribute(name = "descriptionNumber", required = true)
35 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
36 protected String descriptionNumber;
37 @XmlAttribute(name = "xtag", required = true)
38 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
39 protected String xtag;
40
41
42
43
44
45
46
47
48
49 public String getPrimary() {
50 return primary;
51 }
52
53
54
55
56
57
58
59
60
61 public void setPrimary(String value) {
62 this.primary = value;
63 }
64
65
66
67
68
69
70
71
72
73 public String getSecondary() {
74 return secondary;
75 }
76
77
78
79
80
81
82
83
84
85 public void setSecondary(String value) {
86 this.secondary = value;
87 }
88
89
90
91
92
93
94
95
96
97 public String getDescriptionNumber() {
98 return descriptionNumber;
99 }
100
101
102
103
104
105
106
107
108
109 public void setDescriptionNumber(String value) {
110 this.descriptionNumber = value;
111 }
112
113
114
115
116
117
118
119
120
121 public String getXtag() {
122 return xtag;
123 }
124
125
126
127
128
129
130
131
132
133 public void setXtag(String value) {
134 this.xtag = value;
135 }
136
137 }