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.vecmath.Point3d;
14  import javax.xml.bind.annotation.XmlAccessType;
15  import javax.xml.bind.annotation.XmlAccessorType;
16  import javax.xml.bind.annotation.XmlAttribute;
17  import javax.xml.bind.annotation.XmlRootElement;
18  import javax.xml.bind.annotation.XmlSchemaType;
19  import javax.xml.bind.annotation.XmlType;
20  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21  import org.djunits.value.vdouble.scalar.Direction;
22  import org.opentrafficsim.xml.bindings.CoordinateAdapter;
23  import org.opentrafficsim.xml.bindings.DirectionAdapter;
24  
25  
26  /**
27   * <p>Java class for anonymous complex type.
28   * 
29   * <p>The following schema fragment specifies the expected content contained within this class.
30   * 
31   * <pre>
32   * &lt;complexType&gt;
33   *   &lt;complexContent&gt;
34   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
35   *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
36   *       &lt;attribute name="COORDINATE" use="required" type="{http://www.opentrafficsim.org/ots}COORDINATETYPE" /&gt;
37   *       &lt;attribute name="DIRECTION" type="{http://www.opentrafficsim.org/ots}DIRECTIONTYPE" /&gt;
38   *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
39   *     &lt;/restriction&gt;
40   *   &lt;/complexContent&gt;
41   * &lt;/complexType&gt;
42   * </pre>
43   * 
44   * 
45   */
46  @XmlAccessorType(XmlAccessType.FIELD)
47  @XmlType(name = "")
48  @XmlRootElement(name = "NODE")
49  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
50  public class NODE
51      implements Serializable
52  {
53  
54      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
55      private final static long serialVersionUID = 10102L;
56      @XmlAttribute(name = "ID", required = true)
57      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
58      protected String id;
59      @XmlAttribute(name = "COORDINATE", required = true)
60      @XmlJavaTypeAdapter(CoordinateAdapter.class)
61      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
62      protected Point3d coordinate;
63      @XmlAttribute(name = "DIRECTION")
64      @XmlJavaTypeAdapter(DirectionAdapter.class)
65      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
66      protected Direction direction;
67      @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
68      @XmlSchemaType(name = "anyURI")
69      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
70      protected String base;
71  
72      /**
73       * Gets the value of the id property.
74       * 
75       * @return
76       *     possible 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 String getID() {
82          return id;
83      }
84  
85      /**
86       * Sets the value of the id property.
87       * 
88       * @param value
89       *     allowed 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 void setID(String value) {
95          this.id = value;
96      }
97  
98      /**
99       * Gets the value of the coordinate property.
100      * 
101      * @return
102      *     possible 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 Point3d getCOORDINATE() {
108         return coordinate;
109     }
110 
111     /**
112      * Sets the value of the coordinate property.
113      * 
114      * @param value
115      *     allowed object is
116      *     {@link String }
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 void setCOORDINATE(Point3d value) {
121         this.coordinate = value;
122     }
123 
124     /**
125      * Gets the value of the direction property.
126      * 
127      * @return
128      *     possible object is
129      *     {@link String }
130      *     
131      */
132     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
133     public Direction getDIRECTION() {
134         return direction;
135     }
136 
137     /**
138      * Sets the value of the direction property.
139      * 
140      * @param value
141      *     allowed object is
142      *     {@link String }
143      *     
144      */
145     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
146     public void setDIRECTION(Direction value) {
147         this.direction = value;
148     }
149 
150     /**
151      * Gets the value of the base property.
152      * 
153      * @return
154      *     possible object is
155      *     {@link String }
156      *     
157      */
158     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
159     public String getBase() {
160         return base;
161     }
162 
163     /**
164      * Sets the value of the base property.
165      * 
166      * @param value
167      *     allowed object is
168      *     {@link String }
169      *     
170      */
171     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
172     public void setBase(String value) {
173         this.base = value;
174     }
175 
176 }