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.XmlJavaTypeAdapter;
20
21
22
23
24
25 @XmlAccessorType(XmlAccessType.FIELD)
26 @XmlType(name = "", propOrder = {
27 "members",
28 "themroles",
29 "frames",
30 "subclasses"
31 })
32 @XmlRootElement(name = "VNSUBCLASS")
33 public class VNSUBCLASS {
34
35 @XmlAttribute(name = "ID", required = true)
36 @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
37 @XmlID
38 protected String id;
39 @XmlElement(name = "MEMBERS", required = true)
40 protected MEMBERS members;
41 @XmlElement(name = "THEMROLES", required = true)
42 protected THEMROLES themroles;
43 @XmlElement(name = "FRAMES", required = true)
44 protected FRAMES frames;
45 @XmlElement(name = "SUBCLASSES", required = true)
46 protected SUBCLASSES subclasses;
47
48
49
50
51
52
53
54
55
56 public String getID() {
57 return id;
58 }
59
60
61
62
63
64
65
66
67
68 public void setID(String value) {
69 this.id = value;
70 }
71
72
73
74
75
76
77
78
79
80 public MEMBERS getMEMBERS() {
81 return members;
82 }
83
84
85
86
87
88
89
90
91
92 public void setMEMBERS(MEMBERS value) {
93 this.members = value;
94 }
95
96
97
98
99
100
101
102
103
104 public THEMROLES getTHEMROLES() {
105 return themroles;
106 }
107
108
109
110
111
112
113
114
115
116 public void setTHEMROLES(THEMROLES value) {
117 this.themroles = value;
118 }
119
120
121
122
123
124
125
126
127
128 public FRAMES getFRAMES() {
129 return frames;
130 }
131
132
133
134
135
136
137
138
139
140 public void setFRAMES(FRAMES value) {
141 this.frames = value;
142 }
143
144
145
146
147
148
149
150
151
152 public SUBCLASSES getSUBCLASSES() {
153 return subclasses;
154 }
155
156
157
158
159
160
161
162
163
164 public void setSUBCLASSES(SUBCLASSES value) {
165 this.subclasses = value;
166 }
167
168 }