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.XmlElement;
15 import javax.xml.bind.annotation.XmlID;
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlType;
18 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
19 import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
20 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21
22
23
24
25
26 @XmlAccessorType(XmlAccessType.FIELD)
27 @XmlType(name = "", propOrder = {
28 "members",
29 "themroles",
30 "frames",
31 "subclasses"
32 })
33 @XmlRootElement(name = "VNCLASS")
34 public class VNCLASS {
35
36 @XmlAttribute(name = "ID", required = true)
37 @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
38 @XmlID
39 protected String id;
40 @XmlAttribute(name = "xmlns:xsi")
41 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
42 protected String xmlnsXsi;
43 @XmlAttribute(name = "xsi:noNamespaceSchemaLocation", required = true)
44 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
45 protected String xsiNoNamespaceSchemaLocation;
46 @XmlElement(name = "MEMBERS", required = true)
47 protected MEMBERS members;
48 @XmlElement(name = "THEMROLES", required = true)
49 protected THEMROLES themroles;
50 @XmlElement(name = "FRAMES", required = true)
51 protected FRAMES frames;
52 @XmlElement(name = "SUBCLASSES", required = true)
53 protected SUBCLASSES subclasses;
54
55
56
57
58
59
60
61
62
63 public String getID() {
64 return id;
65 }
66
67
68
69
70
71
72
73
74
75 public void setID(String value) {
76 this.id = value;
77 }
78
79
80
81
82
83
84
85
86
87 public String getXmlnsXsi() {
88 return xmlnsXsi;
89 }
90
91
92
93
94
95
96
97
98
99 public void setXmlnsXsi(String value) {
100 this.xmlnsXsi = value;
101 }
102
103
104
105
106
107
108
109
110
111 public String getXsiNoNamespaceSchemaLocation() {
112 return xsiNoNamespaceSchemaLocation;
113 }
114
115
116
117
118
119
120
121
122
123 public void setXsiNoNamespaceSchemaLocation(String value) {
124 this.xsiNoNamespaceSchemaLocation = value;
125 }
126
127
128
129
130
131
132
133
134
135 public MEMBERS getMEMBERS() {
136 return members;
137 }
138
139
140
141
142
143
144
145
146
147 public void setMEMBERS(MEMBERS value) {
148 this.members = value;
149 }
150
151
152
153
154
155
156
157
158
159 public THEMROLES getTHEMROLES() {
160 return themroles;
161 }
162
163
164
165
166
167
168
169
170
171 public void setTHEMROLES(THEMROLES value) {
172 this.themroles = value;
173 }
174
175
176
177
178
179
180
181
182
183 public FRAMES getFRAMES() {
184 return frames;
185 }
186
187
188
189
190
191
192
193
194
195 public void setFRAMES(FRAMES value) {
196 this.frames = value;
197 }
198
199
200
201
202
203
204
205
206
207 public SUBCLASSES getSUBCLASSES() {
208 return subclasses;
209 }
210
211
212
213
214
215
216
217
218
219 public void setSUBCLASSES(SUBCLASSES value) {
220 this.subclasses = value;
221 }
222
223 }