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 java.util.ArrayList;
12  import java.util.List;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlElement;
16  import javax.xml.bind.annotation.XmlRootElement;
17  import javax.xml.bind.annotation.XmlType;
18  
19  
20  /**
21   * 
22   */
23  @XmlAccessorType(XmlAccessType.FIELD)
24  @XmlType(name = "", propOrder = {
25      "grSense",
26      "wn",
27      "omega",
28      "pb",
29      "vn",
30      "fn"
31  })
32  @XmlRootElement(name = "mappings")
33  public class Mappings {
34  
35      @XmlElement(name = "gr_sense")
36      protected String grSense;
37      @XmlElement(required = true)
38      protected List<Wn> wn;
39      @XmlElement(required = true)
40      protected String omega;
41      @XmlElement(required = true)
42      protected String pb;
43      protected String vn;
44      protected String fn;
45  
46      /**
47       * Gets the value of the grSense property.
48       * 
49       * @return
50       *     possible object is
51       *     {@link String }
52       *     
53       */
54      public String getGrSense() {
55          return grSense;
56      }
57  
58      /**
59       * Sets the value of the grSense property.
60       * 
61       * @param value
62       *     allowed object is
63       *     {@link String }
64       *     
65       */
66      public void setGrSense(String value) {
67          this.grSense = value;
68      }
69  
70      /**
71       * Gets the value of the wn property.
72       * 
73       * <p>
74       * This accessor method returns a reference to the live list,
75       * not a snapshot. Therefore any modification you make to the
76       * returned list will be present inside the JAXB object.
77       * This is why there is not a <CODE>set</CODE> method for the wn property.
78       * 
79       * <p>
80       * For example, to add a new item, do as follows:
81       * <pre>
82       *    getWn().add(newItem);
83       * </pre>
84       * 
85       * 
86       * <p>
87       * Objects of the following type(s) are allowed in the list
88       * {@link Wn }
89       * 
90       * 
91       */
92      public List<Wn> getWn() {
93          if (wn == null) {
94              wn = new ArrayList<Wn>();
95          }
96          return this.wn;
97      }
98  
99      /**
100      * Gets the value of the omega property.
101      * 
102      * @return
103      *     possible object is
104      *     {@link String }
105      *     
106      */
107     public String getOmega() {
108         return omega;
109     }
110 
111     /**
112      * Sets the value of the omega property.
113      * 
114      * @param value
115      *     allowed object is
116      *     {@link String }
117      *     
118      */
119     public void setOmega(String value) {
120         this.omega = value;
121     }
122 
123     /**
124      * Gets the value of the pb property.
125      * 
126      * @return
127      *     possible object is
128      *     {@link String }
129      *     
130      */
131     public String getPb() {
132         return pb;
133     }
134 
135     /**
136      * Sets the value of the pb property.
137      * 
138      * @param value
139      *     allowed object is
140      *     {@link String }
141      *     
142      */
143     public void setPb(String value) {
144         this.pb = value;
145     }
146 
147     /**
148      * Gets the value of the vn property.
149      * 
150      * @return
151      *     possible object is
152      *     {@link String }
153      *     
154      */
155     public String getVn() {
156         return vn;
157     }
158 
159     /**
160      * Sets the value of the vn property.
161      * 
162      * @param value
163      *     allowed object is
164      *     {@link String }
165      *     
166      */
167     public void setVn(String value) {
168         this.vn = value;
169     }
170 
171     /**
172      * Gets the value of the fn property.
173      * 
174      * @return
175      *     possible object is
176      *     {@link String }
177      *     
178      */
179     public String getFn() {
180         return fn;
181     }
182 
183     /**
184      * Sets the value of the fn property.
185      * 
186      * @param value
187      *     allowed object is
188      *     {@link String }
189      *     
190      */
191     public void setFn(String value) {
192         this.fn = value;
193     }
194 
195 }