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: 2015.11.12 at 03:35:52 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.onsenses;
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.XmlRootElement;
16  import javax.xml.bind.annotation.XmlType;
17  import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
18  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19  
20  
21  /**
22   * 
23   */
24  @XmlAccessorType(XmlAccessType.FIELD)
25  @XmlType(name = "", propOrder = {
26      "commentary",
27      "examples",
28      "mappings",
29      "sensemeta"
30  })
31  @XmlRootElement(name = "sense")
32  public class Sense {
33  
34      @XmlAttribute(name = "n", required = true)
35      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
36      protected String n;
37      @XmlAttribute(name = "type")
38      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
39      protected String type;
40      @XmlAttribute(name = "name", required = true)
41      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
42      protected String name;
43      @XmlAttribute(name = "group", required = true)
44      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
45      protected String group;
46      protected String commentary;
47      @XmlElement(required = true)
48      protected String examples;
49      @XmlElement(required = true)
50      protected Mappings mappings;
51      @XmlElement(name = "SENSE_META", required = true)
52      protected SENSEMETA sensemeta;
53  
54      /**
55       * Gets the value of the n property.
56       * 
57       * @return
58       *     possible object is
59       *     {@link String }
60       *     
61       */
62      public String getN() {
63          return n;
64      }
65  
66      /**
67       * Sets the value of the n property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link String }
72       *     
73       */
74      public void setN(String value) {
75          this.n = value;
76      }
77  
78      /**
79       * Gets the value of the type property.
80       * 
81       * @return
82       *     possible object is
83       *     {@link String }
84       *     
85       */
86      public String getType() {
87          return type;
88      }
89  
90      /**
91       * Sets the value of the type property.
92       * 
93       * @param value
94       *     allowed object is
95       *     {@link String }
96       *     
97       */
98      public void setType(String value) {
99          this.type = value;
100     }
101 
102     /**
103      * Gets the value of the name property.
104      * 
105      * @return
106      *     possible object is
107      *     {@link String }
108      *     
109      */
110     public String getName() {
111         return name;
112     }
113 
114     /**
115      * Sets the value of the name property.
116      * 
117      * @param value
118      *     allowed object is
119      *     {@link String }
120      *     
121      */
122     public void setName(String value) {
123         this.name = value;
124     }
125 
126     /**
127      * Gets the value of the group property.
128      * 
129      * @return
130      *     possible object is
131      *     {@link String }
132      *     
133      */
134     public String getGroup() {
135         return group;
136     }
137 
138     /**
139      * Sets the value of the group property.
140      * 
141      * @param value
142      *     allowed object is
143      *     {@link String }
144      *     
145      */
146     public void setGroup(String value) {
147         this.group = value;
148     }
149 
150     /**
151      * Gets the value of the commentary property.
152      * 
153      * @return
154      *     possible object is
155      *     {@link String }
156      *     
157      */
158     public String getCommentary() {
159         return commentary;
160     }
161 
162     /**
163      * Sets the value of the commentary property.
164      * 
165      * @param value
166      *     allowed object is
167      *     {@link String }
168      *     
169      */
170     public void setCommentary(String value) {
171         this.commentary = value;
172     }
173 
174     /**
175      * Gets the value of the examples property.
176      * 
177      * @return
178      *     possible object is
179      *     {@link String }
180      *     
181      */
182     public String getExamples() {
183         return examples;
184     }
185 
186     /**
187      * Sets the value of the examples property.
188      * 
189      * @param value
190      *     allowed object is
191      *     {@link String }
192      *     
193      */
194     public void setExamples(String value) {
195         this.examples = value;
196     }
197 
198     /**
199      * Gets the value of the mappings property.
200      * 
201      * @return
202      *     possible object is
203      *     {@link Mappings }
204      *     
205      */
206     public Mappings getMappings() {
207         return mappings;
208     }
209 
210     /**
211      * Sets the value of the mappings property.
212      * 
213      * @param value
214      *     allowed object is
215      *     {@link Mappings }
216      *     
217      */
218     public void setMappings(Mappings value) {
219         this.mappings = value;
220     }
221 
222     /**
223      * Gets the value of the sensemeta property.
224      * 
225      * @return
226      *     possible object is
227      *     {@link SENSEMETA }
228      *     
229      */
230     public SENSEMETA getSENSEMETA() {
231         return sensemeta;
232     }
233 
234     /**
235      * Sets the value of the sensemeta property.
236      * 
237      * @param value
238      *     allowed object is
239      *     {@link SENSEMETA }
240      *     
241      */
242     public void setSENSEMETA(SENSEMETA value) {
243         this.sensemeta = value;
244     }
245 
246 }