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.XmlType;
17  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18  import org.opentrafficsim.xml.bindings.ClassNameAdapter;
19  import org.opentrafficsim.xml.bindings.LengthBeginEndAdapter;
20  import org.opentrafficsim.xml.bindings.types.LengthBeginEnd;
21  
22  
23  /**
24   * <p>Java class for TRAFFICLIGHTTYPE complex type.
25   * 
26   * <p>The following schema fragment specifies the expected content contained within this class.
27   * 
28   * <pre>
29   * &lt;complexType name="TRAFFICLIGHTTYPE"&gt;
30   *   &lt;complexContent&gt;
31   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
32   *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
33   *       &lt;attribute name="LANE" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
34   *       &lt;attribute name="POSITION" use="required" type="{http://www.opentrafficsim.org/ots}LENGTHBEGINENDTYPE" /&gt;
35   *       &lt;attribute name="CLASS" use="required" type="{http://www.opentrafficsim.org/ots}CLASSNAMETYPE" /&gt;
36   *     &lt;/restriction&gt;
37   *   &lt;/complexContent&gt;
38   * &lt;/complexType&gt;
39   * </pre>
40   * 
41   * 
42   */
43  @XmlAccessorType(XmlAccessType.FIELD)
44  @XmlType(name = "TRAFFICLIGHTTYPE")
45  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
46  public class TRAFFICLIGHTTYPE
47      implements Serializable
48  {
49  
50      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
51      private final static long serialVersionUID = 10102L;
52      @XmlAttribute(name = "ID", required = true)
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 id;
55      @XmlAttribute(name = "LANE", required = true)
56      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
57      protected String lane;
58      @XmlAttribute(name = "POSITION", required = true)
59      @XmlJavaTypeAdapter(LengthBeginEndAdapter.class)
60      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
61      protected LengthBeginEnd position;
62      @XmlAttribute(name = "CLASS", required = true)
63      @XmlJavaTypeAdapter(ClassNameAdapter.class)
64      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
65      protected Class _class;
66  
67      /**
68       * Gets the value of the id property.
69       * 
70       * @return
71       *     possible object is
72       *     {@link String }
73       *     
74       */
75      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
76      public String getID() {
77          return id;
78      }
79  
80      /**
81       * Sets the value of the id property.
82       * 
83       * @param value
84       *     allowed object is
85       *     {@link String }
86       *     
87       */
88      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
89      public void setID(String value) {
90          this.id = value;
91      }
92  
93      /**
94       * Gets the value of the lane property.
95       * 
96       * @return
97       *     possible object is
98       *     {@link String }
99       *     
100      */
101     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
102     public String getLANE() {
103         return lane;
104     }
105 
106     /**
107      * Sets the value of the lane property.
108      * 
109      * @param value
110      *     allowed object is
111      *     {@link String }
112      *     
113      */
114     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
115     public void setLANE(String value) {
116         this.lane = value;
117     }
118 
119     /**
120      * Gets the value of the position property.
121      * 
122      * @return
123      *     possible object is
124      *     {@link String }
125      *     
126      */
127     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
128     public LengthBeginEnd getPOSITION() {
129         return position;
130     }
131 
132     /**
133      * Sets the value of the position property.
134      * 
135      * @param value
136      *     allowed object is
137      *     {@link String }
138      *     
139      */
140     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
141     public void setPOSITION(LengthBeginEnd value) {
142         this.position = value;
143     }
144 
145     /**
146      * Gets the value of the class property.
147      * 
148      * @return
149      *     possible object is
150      *     {@link String }
151      *     
152      */
153     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
154     public Class getCLASS() {
155         return _class;
156     }
157 
158     /**
159      * Sets the value of the class property.
160      * 
161      * @param value
162      *     allowed object is
163      *     {@link String }
164      *     
165      */
166     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
167     public void setCLASS(Class value) {
168         this._class = value;
169     }
170 
171 }