1
2
3
4
5
6
7
8
9 package org.opentrafficsim.xml.generated;
10
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.annotation.Generated;
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.XmlIDREF;
18 import javax.xml.bind.annotation.XmlRootElement;
19 import javax.xml.bind.annotation.XmlSchemaType;
20 import javax.xml.bind.annotation.XmlType;
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "")
44 @XmlRootElement(name = "ROUTE")
45 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
46 public class ROUTE {
47
48 @XmlAttribute(name = "NAME", required = true)
49 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
50 protected String name;
51 @XmlAttribute(name = "NODELIST", required = true)
52 @XmlIDREF
53 @XmlSchemaType(name = "IDREFS")
54 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
55 protected List<Object> nodelist;
56 @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
57 @XmlSchemaType(name = "anyURI")
58 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
59 protected String base;
60
61
62
63
64
65
66
67
68
69 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
70 public String getNAME() {
71 return name;
72 }
73
74
75
76
77
78
79
80
81
82 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
83 public void setNAME(String value) {
84 this.name = value;
85 }
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
110 public List<Object> getNODELIST() {
111 if (nodelist == null) {
112 nodelist = new ArrayList<Object>();
113 }
114 return this.nodelist;
115 }
116
117
118
119
120
121
122
123
124
125 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
126 public String getBase() {
127 return base;
128 }
129
130
131
132
133
134
135
136
137
138 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
139 public void setBase(String value) {
140 this.base = value;
141 }
142
143 }