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: 2020.11.01 at 07:11:19 PM CET 
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 = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
50  public class NODE implements Serializable
51  {
52  
53      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
54      private final static long serialVersionUID = 10102L;
55      @XmlAttribute(name = "ID", required = true)
56      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
57      protected String id;
58      @XmlAttribute(name = "COORDINATE", required = true)
59      @XmlJavaTypeAdapter(CoordinateAdapter.class)
60      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
61      protected Point3d coordinate;
62      @XmlAttribute(name = "DIRECTION")
63      @XmlJavaTypeAdapter(DirectionAdapter.class)
64      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
65      protected Direction direction;
66      @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
67      @XmlSchemaType(name = "anyURI")
68      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
69      protected String base;
70  
71      /**
72       * Gets the value of the id property.
73       * 
74       * @return
75       *     possible object is
76       *     {@link String }
77       *     
78       */
79      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
80      public String getID() {
81          return id;
82      }
83  
84      /**
85       * Sets the value of the id property.
86       * 
87       * @param value
88       *     allowed object is
89       *     {@link String }
90       *     
91       */
92      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
93      public void setID(String value) {
94          this.id = value;
95      }
96  
97      /**
98       * Gets the value of the coordinate property.
99       * 
100      * @return
101      *     possible object is
102      *     {@link String }
103      *     
104      */
105     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
106     public Point3d getCOORDINATE() {
107         return coordinate;
108     }
109 
110     /**
111      * Sets the value of the coordinate property.
112      * 
113      * @param value
114      *     allowed object is
115      *     {@link String }
116      *     
117      */
118     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
119     public void setCOORDINATE(Point3d value) {
120         this.coordinate = value;
121     }
122 
123     /**
124      * Gets the value of the direction property.
125      * 
126      * @return
127      *     possible object is
128      *     {@link String }
129      *     
130      */
131     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
132     public Direction getDIRECTION() {
133         return direction;
134     }
135 
136     /**
137      * Sets the value of the direction property.
138      * 
139      * @param value
140      *     allowed object is
141      *     {@link String }
142      *     
143      */
144     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
145     public void setDIRECTION(Direction value) {
146         this.direction = value;
147     }
148 
149     /**
150      * Gets the value of the base property.
151      * 
152      * @return
153      *     possible object is
154      *     {@link String }
155      *     
156      */
157     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
158     public String getBase() {
159         return base;
160     }
161 
162     /**
163      * Sets the value of the base property.
164      * 
165      * @param value
166      *     allowed object is
167      *     {@link String }
168      *     
169      */
170     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
171     public void setBase(String value) {
172         this.base = value;
173     }
174 
175 }