1
2
3
4
5
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
74
75
76
77
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
87
88
89
90
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
100
101
102
103
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
113
114
115
116
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
126
127
128
129
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
139
140
141
142
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
152
153
154
155
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
165
166
167
168
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 }