1
2
3
4
5
6
7
8
9 package org.opentrafficsim.xml.generated;
10
11 import java.io.Serializable;
12 import java.util.ArrayList;
13 import java.util.List;
14 import javax.annotation.Generated;
15 import javax.xml.bind.annotation.XmlAccessType;
16 import javax.xml.bind.annotation.XmlAccessorType;
17 import javax.xml.bind.annotation.XmlAttribute;
18 import javax.xml.bind.annotation.XmlElement;
19 import javax.xml.bind.annotation.XmlRootElement;
20 import javax.xml.bind.annotation.XmlType;
21 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
22 import org.opentrafficsim.xml.bindings.StringAdapter;
23 import org.opentrafficsim.xml.bindings.types.StringType;
24
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 = "", propOrder = {
49 "node"
50 })
51 @XmlRootElement(name = "Route")
52 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
53 public class Route
54 implements Serializable
55 {
56
57 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
58 private final static long serialVersionUID = 10102L;
59 @XmlElement(name = "Node", required = true, type = String.class)
60 @XmlJavaTypeAdapter(StringAdapter.class)
61 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
62 protected List<StringType> node;
63 @XmlAttribute(name = "Id", required = true)
64 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
65 protected String id;
66 @XmlAttribute(name = "GtuType", required = true)
67 @XmlJavaTypeAdapter(StringAdapter.class)
68 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
69 protected StringType gtuType;
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
94 public List<StringType> getNode() {
95 if (node == null) {
96 node = new ArrayList<StringType>();
97 }
98 return this.node;
99 }
100
101
102
103
104
105
106
107
108
109 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
110 public String getId() {
111 return id;
112 }
113
114
115
116
117
118
119
120
121
122 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
123 public void setId(String value) {
124 this.id = value;
125 }
126
127
128
129
130
131
132
133
134
135 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
136 public StringType getGtuType() {
137 return gtuType;
138 }
139
140
141
142
143
144
145
146
147
148 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
149 public void setGtuType(StringType value) {
150 this.gtuType = value;
151 }
152
153 }