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.XmlRootElement;
15  import javax.xml.bind.annotation.XmlType;
16  import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18  
19  
20  /**
21   * 
22   */
23  @XmlAccessorType(XmlAccessType.FIELD)
24  @XmlType(name = "")
25  @XmlRootElement(name = "DESCRIPTION")
26  public class DESCRIPTION {
27  
28      @XmlAttribute(name = "primary", required = true)
29      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
30      protected String primary;
31      @XmlAttribute(name = "secondary")
32      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
33      protected String secondary;
34      @XmlAttribute(name = "descriptionNumber", required = true)
35      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
36      protected String descriptionNumber;
37      @XmlAttribute(name = "xtag", required = true)
38      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
39      protected String xtag;
40  
41      /**
42       * Gets the value of the primary property.
43       * 
44       * @return
45       *     possible object is
46       *     {@link String }
47       *     
48       */
49      public String getPrimary() {
50          return primary;
51      }
52  
53      /**
54       * Sets the value of the primary property.
55       * 
56       * @param value
57       *     allowed object is
58       *     {@link String }
59       *     
60       */
61      public void setPrimary(String value) {
62          this.primary = value;
63      }
64  
65      /**
66       * Gets the value of the secondary property.
67       * 
68       * @return
69       *     possible object is
70       *     {@link String }
71       *     
72       */
73      public String getSecondary() {
74          return secondary;
75      }
76  
77      /**
78       * Sets the value of the secondary property.
79       * 
80       * @param value
81       *     allowed object is
82       *     {@link String }
83       *     
84       */
85      public void setSecondary(String value) {
86          this.secondary = value;
87      }
88  
89      /**
90       * Gets the value of the descriptionNumber property.
91       * 
92       * @return
93       *     possible object is
94       *     {@link String }
95       *     
96       */
97      public String getDescriptionNumber() {
98          return descriptionNumber;
99      }
100 
101     /**
102      * Sets the value of the descriptionNumber property.
103      * 
104      * @param value
105      *     allowed object is
106      *     {@link String }
107      *     
108      */
109     public void setDescriptionNumber(String value) {
110         this.descriptionNumber = value;
111     }
112 
113     /**
114      * Gets the value of the xtag property.
115      * 
116      * @return
117      *     possible object is
118      *     {@link String }
119      *     
120      */
121     public String getXtag() {
122         return xtag;
123     }
124 
125     /**
126      * Sets the value of the xtag property.
127      * 
128      * @param value
129      *     allowed object is
130      *     {@link String }
131      *     
132      */
133     public void setXtag(String value) {
134         this.xtag = value;
135     }
136 
137 }