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.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      "selrestrs"
27  })
28  @XmlRootElement(name = "THEMROLE")
29  public class THEMROLE {
30  
31      @XmlAttribute(name = "type", required = true)
32      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
33      protected String type;
34      @XmlElement(name = "SELRESTRS", required = true)
35      protected SELRESTRS selrestrs;
36  
37      /**
38       * Gets the value of the type property.
39       * 
40       * @return
41       *     possible object is
42       *     {@link String }
43       *     
44       */
45      public String getType() {
46          return type;
47      }
48  
49      /**
50       * Sets the value of the type property.
51       * 
52       * @param value
53       *     allowed object is
54       *     {@link String }
55       *     
56       */
57      public void setType(String value) {
58          this.type = value;
59      }
60  
61      /**
62       * Gets the value of the selrestrs property.
63       * 
64       * @return
65       *     possible object is
66       *     {@link SELRESTRS }
67       *     
68       */
69      public SELRESTRS getSELRESTRS() {
70          return selrestrs;
71      }
72  
73      /**
74       * Sets the value of the selrestrs property.
75       * 
76       * @param value
77       *     allowed object is
78       *     {@link SELRESTRS }
79       *     
80       */
81      public void setSELRESTRS(SELRESTRS value) {
82          this.selrestrs = value;
83      }
84  
85  }