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.XmlRootElement;
19 import javax.xml.bind.annotation.XmlType;
20 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21 import org.djunits.value.vdouble.scalar.Time;
22 import org.opentrafficsim.xml.bindings.TimeAdapter;
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
52 @XmlAccessorType(XmlAccessType.FIELD)
53 @XmlType(name = "", propOrder = {
54 "time"
55 })
56 @XmlRootElement(name = "GLOBALTIME")
57 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
58 public class GLOBALTIME {
59
60 @XmlElement(name = "TIME", required = true)
61 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
62 protected List<GLOBALTIME.TIME> time;
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
87 public List<GLOBALTIME.TIME> getTIME() {
88 if (time == null) {
89 time = new ArrayList<GLOBALTIME.TIME>();
90 }
91 return this.time;
92 }
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112 @XmlAccessorType(XmlAccessType.FIELD)
113 @XmlType(name = "")
114 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
115 public static class TIME {
116
117 @XmlAttribute(name = "VALUE", required = true)
118 @XmlJavaTypeAdapter(TimeAdapter.class)
119 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
120 protected Time value;
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 Time getVALUE() {
132 return value;
133 }
134
135
136
137
138
139
140
141
142
143 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
144 public void setVALUE(Time value) {
145 this.value = value;
146 }
147
148 }
149
150 }