View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
3   // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2019.04.20 at 02:12:22 AM CEST 
6   //
7   
8   
9   package org.opentrafficsim.xml.generated;
10  
11  import java.io.Serializable;
12  import javax.annotation.Generated;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlAttribute;
16  import javax.xml.bind.annotation.XmlRootElement;
17  import javax.xml.bind.annotation.XmlType;
18  
19  
20  /**
21   * <p>Java class for anonymous complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType&gt;
27   *   &lt;complexContent&gt;
28   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
29   *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
30   *       &lt;attribute name="PARENT" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
31   *       &lt;attribute name="DEFAULT" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /&gt;
32   *     &lt;/restriction&gt;
33   *   &lt;/complexContent&gt;
34   * &lt;/complexType&gt;
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "")
41  @XmlRootElement(name = "GTUTYPE")
42  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
43  public class GTUTYPE
44      implements Serializable
45  {
46  
47      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
48      private final static long serialVersionUID = 10102L;
49      @XmlAttribute(name = "ID", required = true)
50      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
51      protected String id;
52      @XmlAttribute(name = "PARENT")
53      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
54      protected String parent;
55      @XmlAttribute(name = "DEFAULT")
56      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
57      protected Boolean _default;
58  
59      /**
60       * Gets the value of the id property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link String }
65       *     
66       */
67      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
68      public String getID() {
69          return id;
70      }
71  
72      /**
73       * Sets the value of the id property.
74       * 
75       * @param value
76       *     allowed object is
77       *     {@link String }
78       *     
79       */
80      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
81      public void setID(String value) {
82          this.id = value;
83      }
84  
85      /**
86       * Gets the value of the parent property.
87       * 
88       * @return
89       *     possible object is
90       *     {@link String }
91       *     
92       */
93      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
94      public String getPARENT() {
95          return parent;
96      }
97  
98      /**
99       * Sets the value of the parent property.
100      * 
101      * @param value
102      *     allowed object is
103      *     {@link String }
104      *     
105      */
106     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
107     public void setPARENT(String value) {
108         this.parent = value;
109     }
110 
111     /**
112      * Gets the value of the default property.
113      * 
114      * @return
115      *     possible object is
116      *     {@link Boolean }
117      *     
118      */
119     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
120     public boolean isDEFAULT() {
121         if (_default == null) {
122             return false;
123         } else {
124             return _default;
125         }
126     }
127 
128     /**
129      * Sets the value of the default property.
130      * 
131      * @param value
132      *     allowed object is
133      *     {@link Boolean }
134      *     
135      */
136     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
137     public void setDEFAULT(Boolean value) {
138         this._default = value;
139     }
140 
141 }