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 10:43:37 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.fnlu;
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.XmlType;
15  
16  
17  /**
18   * <p>Java class for lexemeType complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="lexemeType">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
27   *       &lt;attribute name="POS" use="required" type="{http://framenet.icsi.berkeley.edu}POSType" />
28   *       &lt;attribute name="breakBefore" type="{http://www.w3.org/2001/XMLSchema}boolean" />
29   *       &lt;attribute name="headword" type="{http://www.w3.org/2001/XMLSchema}boolean" />
30   *       &lt;attribute name="order" type="{http://framenet.icsi.berkeley.edu}orderType" />
31   *     &lt;/restriction>
32   *   &lt;/complexContent>
33   * &lt;/complexType>
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "lexemeType")
40  public class LexemeType {
41  
42      @XmlAttribute(name = "name", required = true)
43      protected String name;
44      @XmlAttribute(name = "POS", required = true)
45      protected POSType pos;
46      @XmlAttribute(name = "breakBefore")
47      protected Boolean breakBefore;
48      @XmlAttribute(name = "headword")
49      protected Boolean headword;
50      @XmlAttribute(name = "order")
51      protected Integer order;
52  
53      /**
54       * Gets the value of the name property.
55       * 
56       * @return
57       *     possible object is
58       *     {@link String }
59       *     
60       */
61      public String getName() {
62          return name;
63      }
64  
65      /**
66       * Sets the value of the name property.
67       * 
68       * @param value
69       *     allowed object is
70       *     {@link String }
71       *     
72       */
73      public void setName(String value) {
74          this.name = value;
75      }
76  
77      /**
78       * Gets the value of the pos property.
79       * 
80       * @return
81       *     possible object is
82       *     {@link POSType }
83       *     
84       */
85      public POSType getPOS() {
86          return pos;
87      }
88  
89      /**
90       * Sets the value of the pos property.
91       * 
92       * @param value
93       *     allowed object is
94       *     {@link POSType }
95       *     
96       */
97      public void setPOS(POSType value) {
98          this.pos = value;
99      }
100 
101     /**
102      * Gets the value of the breakBefore property.
103      * 
104      * @return
105      *     possible object is
106      *     {@link Boolean }
107      *     
108      */
109     public Boolean isBreakBefore() {
110         return breakBefore;
111     }
112 
113     /**
114      * Sets the value of the breakBefore property.
115      * 
116      * @param value
117      *     allowed object is
118      *     {@link Boolean }
119      *     
120      */
121     public void setBreakBefore(Boolean value) {
122         this.breakBefore = value;
123     }
124 
125     /**
126      * Gets the value of the headword property.
127      * 
128      * @return
129      *     possible object is
130      *     {@link Boolean }
131      *     
132      */
133     public Boolean isHeadword() {
134         return headword;
135     }
136 
137     /**
138      * Sets the value of the headword property.
139      * 
140      * @param value
141      *     allowed object is
142      *     {@link Boolean }
143      *     
144      */
145     public void setHeadword(Boolean value) {
146         this.headword = value;
147     }
148 
149     /**
150      * Gets the value of the order property.
151      * 
152      * @return
153      *     possible object is
154      *     {@link Integer }
155      *     
156      */
157     public Integer getOrder() {
158         return order;
159     }
160 
161     /**
162      * Sets the value of the order property.
163      * 
164      * @param value
165      *     allowed object is
166      *     {@link Integer }
167      *     
168      */
169     public void setOrder(Integer value) {
170         this.order = value;
171     }
172 
173 }