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.03.16 at 06:21:55 PM CET 
6   //
7   
8   
9   package org.opentrafficsim.xml.generated;
10  
11  import javax.annotation.Generated;
12  import javax.vecmath.Point3d;
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.XmlID;
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.CollapsedStringAdapter;
21  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
22  import org.djunits.value.vdouble.scalar.Direction;
23  import org.opentrafficsim.xml.bindings.CoordinateAdapter;
24  import org.opentrafficsim.xml.bindings.DirectionAdapter;
25  
26  
27  /**
28   * <p>Java class for anonymous complex type.
29   * 
30   * <p>The following schema fragment specifies the expected content contained within this class.
31   * 
32   * <pre>
33   * &lt;complexType&gt;
34   *   &lt;complexContent&gt;
35   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
36   *       &lt;attribute name="NAME" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /&gt;
37   *       &lt;attribute name="COORDINATE" use="required" type="{http://www.opentrafficsim.org/ots}COORDINATETYPE" /&gt;
38   *       &lt;attribute name="DIRECTION" type="{http://www.opentrafficsim.org/ots}DIRECTIONTYPE" /&gt;
39   *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
40   *     &lt;/restriction&gt;
41   *   &lt;/complexContent&gt;
42   * &lt;/complexType&gt;
43   * </pre>
44   * 
45   * 
46   */
47  @XmlAccessorType(XmlAccessType.FIELD)
48  @XmlType(name = "")
49  @XmlRootElement(name = "NODE")
50  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
51  public class NODE {
52  
53      @XmlAttribute(name = "NAME", required = true)
54      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
55      @XmlID
56      @XmlSchemaType(name = "ID")
57      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
58      protected String name;
59      @XmlAttribute(name = "COORDINATE", required = true)
60      @XmlJavaTypeAdapter(CoordinateAdapter.class)
61      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01: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-03-16T06:21:55+01: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-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
70      protected String base;
71  
72      /**
73       * Gets the value of the name property.
74       * 
75       * @return
76       *     possible object is
77       *     {@link String }
78       *     
79       */
80      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
81      public String getNAME() {
82          return name;
83      }
84  
85      /**
86       * Sets the value of the name property.
87       * 
88       * @param value
89       *     allowed object is
90       *     {@link String }
91       *     
92       */
93      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
94      public void setNAME(String value) {
95          this.name = 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-03-16T06:21:55+01: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-03-16T06:21:55+01: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-03-16T06:21:55+01: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-03-16T06:21:55+01: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-03-16T06:21:55+01: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-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
172     public void setBase(String value) {
173         this.base = value;
174     }
175 
176 }