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.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       * Gets the value of the id property.
50       * 
51       * @return
52       *     possible object is
53       *     {@link String }
54       *     
55       */
56      public String getID() {
57          return id;
58      }
59  
60      /**
61       * Sets the value of the id property.
62       * 
63       * @param value
64       *     allowed object is
65       *     {@link String }
66       *     
67       */
68      public void setID(String value) {
69          this.id = value;
70      }
71  
72      /**
73       * Gets the value of the members property.
74       * 
75       * @return
76       *     possible object is
77       *     {@link MEMBERS }
78       *     
79       */
80      public MEMBERS getMEMBERS() {
81          return members;
82      }
83  
84      /**
85       * Sets the value of the members property.
86       * 
87       * @param value
88       *     allowed object is
89       *     {@link MEMBERS }
90       *     
91       */
92      public void setMEMBERS(MEMBERS value) {
93          this.members = value;
94      }
95  
96      /**
97       * Gets the value of the themroles property.
98       * 
99       * @return
100      *     possible object is
101      *     {@link THEMROLES }
102      *     
103      */
104     public THEMROLES getTHEMROLES() {
105         return themroles;
106     }
107 
108     /**
109      * Sets the value of the themroles property.
110      * 
111      * @param value
112      *     allowed object is
113      *     {@link THEMROLES }
114      *     
115      */
116     public void setTHEMROLES(THEMROLES value) {
117         this.themroles = value;
118     }
119 
120     /**
121      * Gets the value of the frames property.
122      * 
123      * @return
124      *     possible object is
125      *     {@link FRAMES }
126      *     
127      */
128     public FRAMES getFRAMES() {
129         return frames;
130     }
131 
132     /**
133      * Sets the value of the frames property.
134      * 
135      * @param value
136      *     allowed object is
137      *     {@link FRAMES }
138      *     
139      */
140     public void setFRAMES(FRAMES value) {
141         this.frames = value;
142     }
143 
144     /**
145      * Gets the value of the subclasses property.
146      * 
147      * @return
148      *     possible object is
149      *     {@link SUBCLASSES }
150      *     
151      */
152     public SUBCLASSES getSUBCLASSES() {
153         return subclasses;
154     }
155 
156     /**
157      * Sets the value of the subclasses property.
158      * 
159      * @param value
160      *     allowed object is
161      *     {@link SUBCLASSES }
162      *     
163      */
164     public void setSUBCLASSES(SUBCLASSES value) {
165         this.subclasses = value;
166     }
167 
168 }