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