1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
3 // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2019.03.16 at 06:21:55 PM CET
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.XmlElement;
17 import javax.xml.bind.annotation.XmlRootElement;
18 import javax.xml.bind.annotation.XmlType;
19
20
21 /**
22 * <p>Java class for anonymous complex type.
23 *
24 * <p>The following schema fragment specifies the expected content contained within this class.
25 *
26 * <pre>
27 * <complexType>
28 * <complexContent>
29 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30 * <choice>
31 * <element name="GTUCOLORERS">
32 * <complexType>
33 * <complexContent>
34 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35 * <sequence>
36 * <element name="GTUCOLORER" type="{http://www.opentrafficsim.org/ots}GTUCOLORERTYPE" maxOccurs="unbounded"/>
37 * </sequence>
38 * </restriction>
39 * </complexContent>
40 * </complexType>
41 * </element>
42 * <element name="GTUCOLORER" type="{http://www.opentrafficsim.org/ots}GTUCOLORERTYPE"/>
43 * </choice>
44 * </restriction>
45 * </complexContent>
46 * </complexType>
47 * </pre>
48 *
49 *
50 */
51 @XmlAccessorType(XmlAccessType.FIELD)
52 @XmlType(name = "", propOrder = {
53 "gtucolorers",
54 "gtucolorer"
55 })
56 @XmlRootElement(name = "ANIMATION")
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 ANIMATION {
59
60 @XmlElement(name = "GTUCOLORERS")
61 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
62 protected ANIMATION.GTUCOLORERS gtucolorers;
63 @XmlElement(name = "GTUCOLORER")
64 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
65 protected GTUCOLORERTYPE gtucolorer;
66
67 /**
68 * Gets the value of the gtucolorers property.
69 *
70 * @return
71 * possible object is
72 * {@link ANIMATION.GTUCOLORERS }
73 *
74 */
75 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
76 public ANIMATION.GTUCOLORERS getGTUCOLORERS() {
77 return gtucolorers;
78 }
79
80 /**
81 * Sets the value of the gtucolorers property.
82 *
83 * @param value
84 * allowed object is
85 * {@link ANIMATION.GTUCOLORERS }
86 *
87 */
88 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
89 public void setGTUCOLORERS(ANIMATION.GTUCOLORERS value) {
90 this.gtucolorers = value;
91 }
92
93 /**
94 * Gets the value of the gtucolorer property.
95 *
96 * @return
97 * possible object is
98 * {@link GTUCOLORERTYPE }
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 GTUCOLORERTYPE getGTUCOLORER() {
103 return gtucolorer;
104 }
105
106 /**
107 * Sets the value of the gtucolorer property.
108 *
109 * @param value
110 * allowed object is
111 * {@link GTUCOLORERTYPE }
112 *
113 */
114 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
115 public void setGTUCOLORER(GTUCOLORERTYPE value) {
116 this.gtucolorer = value;
117 }
118
119
120 /**
121 * <p>Java class for anonymous complex type.
122 *
123 * <p>The following schema fragment specifies the expected content contained within this class.
124 *
125 * <pre>
126 * <complexType>
127 * <complexContent>
128 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
129 * <sequence>
130 * <element name="GTUCOLORER" type="{http://www.opentrafficsim.org/ots}GTUCOLORERTYPE" maxOccurs="unbounded"/>
131 * </sequence>
132 * </restriction>
133 * </complexContent>
134 * </complexType>
135 * </pre>
136 *
137 *
138 */
139 @XmlAccessorType(XmlAccessType.FIELD)
140 @XmlType(name = "", propOrder = {
141 "gtucolorer"
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 static class GTUCOLORERS {
145
146 @XmlElement(name = "GTUCOLORER", required = true)
147 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
148 protected List<GTUCOLORERTYPE> gtucolorer;
149
150 /**
151 * Gets the value of the gtucolorer property.
152 *
153 * <p>
154 * This accessor method returns a reference to the live list,
155 * not a snapshot. Therefore any modification you make to the
156 * returned list will be present inside the JAXB object.
157 * This is why there is not a <CODE>set</CODE> method for the gtucolorer property.
158 *
159 * <p>
160 * For example, to add a new item, do as follows:
161 * <pre>
162 * getGTUCOLORER().add(newItem);
163 * </pre>
164 *
165 *
166 * <p>
167 * Objects of the following type(s) are allowed in the list
168 * {@link GTUCOLORERTYPE }
169 *
170 *
171 */
172 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
173 public List<GTUCOLORERTYPE> getGTUCOLORER() {
174 if (gtucolorer == null) {
175 gtucolorer = new ArrayList<GTUCOLORERTYPE>();
176 }
177 return this.gtucolorer;
178 }
179
180 }
181
182 }