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.XmlElements;
20 import javax.xml.bind.annotation.XmlRootElement;
21 import javax.xml.bind.annotation.XmlSchemaType;
22 import javax.xml.bind.annotation.XmlType;
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51 @XmlAccessorType(XmlAccessType.FIELD)
52 @XmlType(name = "", propOrder = {
53 "includeAndGTUTYPESAndGTUTEMPLATES"
54 })
55 @XmlRootElement(name = "DEFINITIONS")
56 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
57 public class DEFINITIONS
58 implements Serializable
59 {
60
61 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
62 private final static long serialVersionUID = 10102L;
63 @XmlElements({
64 @XmlElement(name = "include", namespace = "http://www.w3.org/2001/XInclude", type = IncludeType.class),
65 @XmlElement(name = "GTUTYPES", type = GTUTYPES.class),
66 @XmlElement(name = "GTUTEMPLATES", type = GTUTEMPLATES.class),
67 @XmlElement(name = "LINKTYPES", type = LINKTYPES.class),
68 @XmlElement(name = "LANETYPES", type = LANETYPES.class),
69 @XmlElement(name = "ROADLAYOUTS", type = ROADLAYOUTS.class),
70 @XmlElement(name = "PARAMETERTYPES", type = PARAMETERTYPES.class)
71 })
72 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
73 protected List<Serializable> includeAndGTUTYPESAndGTUTEMPLATES;
74 @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
75 @XmlSchemaType(name = "anyURI")
76 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
77 protected String base;
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
108 public List<Serializable> getIncludeAndGTUTYPESAndGTUTEMPLATES() {
109 if (includeAndGTUTYPESAndGTUTEMPLATES == null) {
110 includeAndGTUTYPESAndGTUTEMPLATES = new ArrayList<Serializable>();
111 }
112 return this.includeAndGTUTYPESAndGTUTEMPLATES;
113 }
114
115
116
117
118
119
120
121
122
123 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
124 public String getBase() {
125 return base;
126 }
127
128
129
130
131
132
133
134
135
136 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
137 public void setBase(String value) {
138 this.base = value;
139 }
140
141 }