1
2
3
4
5
6
7
8
9 package org.opentrafficsim.xml.generated;
10
11 import javax.annotation.Generated;
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlAttribute;
15 import javax.xml.bind.annotation.XmlRootElement;
16 import javax.xml.bind.annotation.XmlType;
17 import javax.xml.bind.annotation.XmlValue;
18 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19 import org.djunits.value.vdouble.scalar.Time;
20 import org.opentrafficsim.xml.bindings.TimeAdapter;
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "", propOrder = {
42 "value"
43 })
44 @XmlRootElement(name = "LEVEL")
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 LEVEL {
47
48 @XmlValue
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 value;
51 @XmlAttribute(name = "TIME")
52 @XmlJavaTypeAdapter(TimeAdapter.class)
53 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
54 protected Time time;
55
56
57
58
59
60
61
62
63
64 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
65 public String getValue() {
66 return value;
67 }
68
69
70
71
72
73
74
75
76
77 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
78 public void setValue(String value) {
79 this.value = value;
80 }
81
82
83
84
85
86
87
88
89
90 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
91 public Time getTIME() {
92 return time;
93 }
94
95
96
97
98
99
100
101
102
103 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
104 public void setTIME(Time value) {
105 this.time = value;
106 }
107
108 }