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.XmlElement;
18 import javax.xml.bind.annotation.XmlElements;
19 import javax.xml.bind.annotation.XmlRootElement;
20 import javax.xml.bind.annotation.XmlSchemaType;
21 import javax.xml.bind.annotation.XmlType;
22
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 "includeOrGTUTYPESOrGTUTEMPLATES"
54 })
55 @XmlRootElement(name = "DEFINITIONS")
56 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
57 public class DEFINITIONS {
58
59 @XmlElements({
60 @XmlElement(name = "include", namespace = "http://www.w3.org/2001/XInclude", type = IncludeType.class),
61 @XmlElement(name = "GTUTYPES", type = GTUTYPES.class),
62 @XmlElement(name = "GTUTEMPLATES", type = GTUTEMPLATES.class),
63 @XmlElement(name = "LANETYPES", type = LANETYPES.class),
64 @XmlElement(name = "LINKTYPES", type = LINKTYPES.class),
65 @XmlElement(name = "ROADLAYOUT", type = ROADLAYOUT.class)
66 })
67 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
68 protected List<Object> includeOrGTUTYPESOrGTUTEMPLATES;
69 @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
70 @XmlSchemaType(name = "anyURI")
71 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
72 protected String base;
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
102 public List<Object> getIncludeOrGTUTYPESOrGTUTEMPLATES() {
103 if (includeOrGTUTYPESOrGTUTEMPLATES == null) {
104 includeOrGTUTYPESOrGTUTEMPLATES = new ArrayList<Object>();
105 }
106 return this.includeOrGTUTYPESOrGTUTEMPLATES;
107 }
108
109
110
111
112
113
114
115
116
117 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
118 public String getBase() {
119 return base;
120 }
121
122
123
124
125
126
127
128
129
130 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
131 public void setBase(String value) {
132 this.base = value;
133 }
134
135 }