1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2016.02.15 at 02:35:27 PM CET 
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       * Gets the value of the id property.
57       * 
58       * @return
59       *     possible object is
60       *     {@link String }
61       *     
62       */
63      public String getID() {
64          return id;
65      }
66  
67      /**
68       * Sets the value of the id property.
69       * 
70       * @param value
71       *     allowed object is
72       *     {@link String }
73       *     
74       */
75      public void setID(String value) {
76          this.id = value;
77      }
78  
79      /**
80       * Gets the value of the xmlnsXsi property.
81       * 
82       * @return
83       *     possible object is
84       *     {@link String }
85       *     
86       */
87      public String getXmlnsXsi() {
88          return xmlnsXsi;
89      }
90  
91      /**
92       * Sets the value of the xmlnsXsi property.
93       * 
94       * @param value
95       *     allowed object is
96       *     {@link String }
97       *     
98       */
99      public void setXmlnsXsi(String value) {
100         this.xmlnsXsi = value;
101     }
102 
103     /**
104      * Gets the value of the xsiNoNamespaceSchemaLocation property.
105      * 
106      * @return
107      *     possible object is
108      *     {@link String }
109      *     
110      */
111     public String getXsiNoNamespaceSchemaLocation() {
112         return xsiNoNamespaceSchemaLocation;
113     }
114 
115     /**
116      * Sets the value of the xsiNoNamespaceSchemaLocation property.
117      * 
118      * @param value
119      *     allowed object is
120      *     {@link String }
121      *     
122      */
123     public void setXsiNoNamespaceSchemaLocation(String value) {
124         this.xsiNoNamespaceSchemaLocation = value;
125     }
126 
127     /**
128      * Gets the value of the members property.
129      * 
130      * @return
131      *     possible object is
132      *     {@link MEMBERS }
133      *     
134      */
135     public MEMBERS getMEMBERS() {
136         return members;
137     }
138 
139     /**
140      * Sets the value of the members property.
141      * 
142      * @param value
143      *     allowed object is
144      *     {@link MEMBERS }
145      *     
146      */
147     public void setMEMBERS(MEMBERS value) {
148         this.members = value;
149     }
150 
151     /**
152      * Gets the value of the themroles property.
153      * 
154      * @return
155      *     possible object is
156      *     {@link THEMROLES }
157      *     
158      */
159     public THEMROLES getTHEMROLES() {
160         return themroles;
161     }
162 
163     /**
164      * Sets the value of the themroles property.
165      * 
166      * @param value
167      *     allowed object is
168      *     {@link THEMROLES }
169      *     
170      */
171     public void setTHEMROLES(THEMROLES value) {
172         this.themroles = value;
173     }
174 
175     /**
176      * Gets the value of the frames property.
177      * 
178      * @return
179      *     possible object is
180      *     {@link FRAMES }
181      *     
182      */
183     public FRAMES getFRAMES() {
184         return frames;
185     }
186 
187     /**
188      * Sets the value of the frames property.
189      * 
190      * @param value
191      *     allowed object is
192      *     {@link FRAMES }
193      *     
194      */
195     public void setFRAMES(FRAMES value) {
196         this.frames = value;
197     }
198 
199     /**
200      * Gets the value of the subclasses property.
201      * 
202      * @return
203      *     possible object is
204      *     {@link SUBCLASSES }
205      *     
206      */
207     public SUBCLASSES getSUBCLASSES() {
208         return subclasses;
209     }
210 
211     /**
212      * Sets the value of the subclasses property.
213      * 
214      * @param value
215      *     allowed object is
216      *     {@link SUBCLASSES }
217      *     
218      */
219     public void setSUBCLASSES(SUBCLASSES value) {
220         this.subclasses = value;
221     }
222 
223 }