1
2
3
4
5
6
7
8
9 package eu.fbk.dkm.premon.premonitor.verbnet;
10
11 import javax.xml.bind.annotation.XmlRegistry;
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 @XmlRegistry
29 public class ObjectFactory {
30
31
32
33
34
35
36 public ObjectFactory() {
37 }
38
39
40
41
42
43 public NP createNP() {
44 return new NP();
45 }
46
47
48
49
50
51 public SYNRESTRS createSYNRESTRS() {
52 return new SYNRESTRS();
53 }
54
55
56
57
58
59 public SELRESTRS createSELRESTRS() {
60 return new SELRESTRS();
61 }
62
63
64
65
66
67 public SYNRESTR createSYNRESTR() {
68 return new SYNRESTR();
69 }
70
71
72
73
74
75 public ARGS createARGS() {
76 return new ARGS();
77 }
78
79
80
81
82
83 public ARG createARG() {
84 return new ARG();
85 }
86
87
88
89
90
91 public PRED createPRED() {
92 return new PRED();
93 }
94
95
96
97
98
99 public ADJ createADJ() {
100 return new ADJ();
101 }
102
103
104
105
106
107 public PREP createPREP() {
108 return new PREP();
109 }
110
111
112
113
114
115 public FRAME createFRAME() {
116 return new FRAME();
117 }
118
119
120
121
122
123 public DESCRIPTION createDESCRIPTION() {
124 return new DESCRIPTION();
125 }
126
127
128
129
130
131 public EXAMPLES createEXAMPLES() {
132 return new EXAMPLES();
133 }
134
135
136
137
138
139 public SYNTAX createSYNTAX() {
140 return new SYNTAX();
141 }
142
143
144
145
146
147 public SEMANTICS createSEMANTICS() {
148 return new SEMANTICS();
149 }
150
151
152
153
154
155 public VERB createVERB() {
156 return new VERB();
157 }
158
159
160
161
162
163 public ADV createADV() {
164 return new ADV();
165 }
166
167
168
169
170
171 public LEX createLEX() {
172 return new LEX();
173 }
174
175
176
177
178
179 public MEMBER createMEMBER() {
180 return new MEMBER();
181 }
182
183
184
185
186
187 public SELRESTR createSELRESTR() {
188 return new SELRESTR();
189 }
190
191
192
193
194
195 public THEMROLE createTHEMROLE() {
196 return new THEMROLE();
197 }
198
199
200
201
202
203 public VNSUBCLASS createVNSUBCLASS() {
204 return new VNSUBCLASS();
205 }
206
207
208
209
210
211 public MEMBERS createMEMBERS() {
212 return new MEMBERS();
213 }
214
215
216
217
218
219 public THEMROLES createTHEMROLES() {
220 return new THEMROLES();
221 }
222
223
224
225
226
227 public FRAMES createFRAMES() {
228 return new FRAMES();
229 }
230
231
232
233
234
235 public SUBCLASSES createSUBCLASSES() {
236 return new SUBCLASSES();
237 }
238
239
240
241
242
243 public VNCLASS createVNCLASS() {
244 return new VNCLASS();
245 }
246
247
248
249
250
251 public EXAMPLE createEXAMPLE() {
252 return new EXAMPLE();
253 }
254
255 }