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 = "MEMBER")
26  public class MEMBER {
27  
28      @XmlAttribute(name = "name", required = true)
29      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
30      protected String name;
31      @XmlAttribute(name = "wn", required = true)
32      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
33      protected String wn;
34      @XmlAttribute(name = "grouping")
35      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
36      protected String grouping;
37  
38      /**
39       * Gets the value of the name property.
40       * 
41       * @return
42       *     possible object is
43       *     {@link String }
44       *     
45       */
46      public String getName() {
47          return name;
48      }
49  
50      /**
51       * Sets the value of the name property.
52       * 
53       * @param value
54       *     allowed object is
55       *     {@link String }
56       *     
57       */
58      public void setName(String value) {
59          this.name = value;
60      }
61  
62      /**
63       * Gets the value of the wn property.
64       * 
65       * @return
66       *     possible object is
67       *     {@link String }
68       *     
69       */
70      public String getWn() {
71          return wn;
72      }
73  
74      /**
75       * Sets the value of the wn property.
76       * 
77       * @param value
78       *     allowed object is
79       *     {@link String }
80       *     
81       */
82      public void setWn(String value) {
83          this.wn = value;
84      }
85  
86      /**
87       * Gets the value of the grouping property.
88       * 
89       * @return
90       *     possible object is
91       *     {@link String }
92       *     
93       */
94      public String getGrouping() {
95          return grouping;
96      }
97  
98      /**
99       * Sets the value of the grouping property.
100      * 
101      * @param value
102      *     allowed object is
103      *     {@link String }
104      *     
105      */
106     public void setGrouping(String value) {
107         this.grouping = value;
108     }
109 
110 }