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 semTypeRefType complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="semTypeRefType">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;attribute name="ID" use="required" type="{http://framenet.icsi.berkeley.edu}IDType" />
27   *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
28   *     &lt;/restriction>
29   *   &lt;/complexContent>
30   * &lt;/complexType>
31   * </pre>
32   * 
33   * 
34   */
35  @XmlAccessorType(XmlAccessType.FIELD)
36  @XmlType(name = "semTypeRefType")
37  public class SemTypeRefType {
38  
39      @XmlAttribute(name = "ID", required = true)
40      protected int id;
41      @XmlAttribute(name = "name", required = true)
42      protected String name;
43  
44      /**
45       * Gets the value of the id property.
46       * 
47       */
48      public int getID() {
49          return id;
50      }
51  
52      /**
53       * Sets the value of the id property.
54       * 
55       */
56      public void setID(int value) {
57          this.id = value;
58      }
59  
60      /**
61       * Gets the value of the name property.
62       * 
63       * @return
64       *     possible object is
65       *     {@link String }
66       *     
67       */
68      public String getName() {
69          return name;
70      }
71  
72      /**
73       * Sets the value of the name property.
74       * 
75       * @param value
76       *     allowed object is
77       *     {@link String }
78       *     
79       */
80      public void setName(String value) {
81          this.name = value;
82      }
83  
84  }