1
2
3
4
5
6
7
8
9 package org.opentrafficsim.xml.generated;
10
11 import javax.annotation.Generated;
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlAttribute;
15 import javax.xml.bind.annotation.XmlRootElement;
16 import javax.xml.bind.annotation.XmlSchemaType;
17 import javax.xml.bind.annotation.XmlType;
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "")
45 @XmlRootElement(name = "GTUTEMPLATE")
46 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
47 public class GTUTEMPLATE {
48
49 @XmlAttribute(name = "NAME", required = true)
50 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
51 protected String name;
52 @XmlAttribute(name = "GTUTYPE", required = true)
53 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
54 protected String gtutype;
55 @XmlAttribute(name = "LENGTH", required = true)
56 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
57 protected String length;
58 @XmlAttribute(name = "WIDTH", required = true)
59 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
60 protected String width;
61 @XmlAttribute(name = "MAXSPEED", required = true)
62 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
63 protected String maxspeed;
64 @XmlAttribute(name = "DEFAULT")
65 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
66 protected Boolean _default;
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 String getGTUTYPE() {
108 return gtutype;
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 setGTUTYPE(String value) {
121 this.gtutype = 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 String getLENGTH() {
134 return length;
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 setLENGTH(String value) {
147 this.length = 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 getWIDTH() {
160 return width;
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 setWIDTH(String value) {
173 this.width = value;
174 }
175
176
177
178
179
180
181
182
183
184 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
185 public String getMAXSPEED() {
186 return maxspeed;
187 }
188
189
190
191
192
193
194
195
196
197 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
198 public void setMAXSPEED(String value) {
199 this.maxspeed = value;
200 }
201
202
203
204
205
206
207
208
209
210 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
211 public boolean isDEFAULT() {
212 if (_default == null) {
213 return false;
214 } else {
215 return _default;
216 }
217 }
218
219
220
221
222
223
224
225
226
227 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
228 public void setDEFAULT(Boolean value) {
229 this._default = value;
230 }
231
232
233
234
235
236
237
238
239
240 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
241 public String getBase() {
242 return base;
243 }
244
245
246
247
248
249
250
251
252
253 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
254 public void setBase(String value) {
255 this.base = value;
256 }
257
258 }