ANIMATION.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.03.16 at 06:21:55 PM CET
//
package org.opentrafficsim.xml.generated;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="GTUCOLORERS">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GTUCOLORER" type="{http://www.opentrafficsim.org/ots}GTUCOLORERTYPE" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="GTUCOLORER" type="{http://www.opentrafficsim.org/ots}GTUCOLORERTYPE"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"gtucolorers",
"gtucolorer"
})
@XmlRootElement(name = "ANIMATION")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public class ANIMATION {
@XmlElement(name = "GTUCOLORERS")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected ANIMATION.GTUCOLORERS gtucolorers;
@XmlElement(name = "GTUCOLORER")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected GTUCOLORERTYPE gtucolorer;
/**
* Gets the value of the gtucolorers property.
*
* @return
* possible object is
* {@link ANIMATION.GTUCOLORERS }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public ANIMATION.GTUCOLORERS getGTUCOLORERS() {
return gtucolorers;
}
/**
* Sets the value of the gtucolorers property.
*
* @param value
* allowed object is
* {@link ANIMATION.GTUCOLORERS }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public void setGTUCOLORERS(ANIMATION.GTUCOLORERS value) {
this.gtucolorers = value;
}
/**
* Gets the value of the gtucolorer property.
*
* @return
* possible object is
* {@link GTUCOLORERTYPE }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public GTUCOLORERTYPE getGTUCOLORER() {
return gtucolorer;
}
/**
* Sets the value of the gtucolorer property.
*
* @param value
* allowed object is
* {@link GTUCOLORERTYPE }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public void setGTUCOLORER(GTUCOLORERTYPE value) {
this.gtucolorer = value;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GTUCOLORER" type="{http://www.opentrafficsim.org/ots}GTUCOLORERTYPE" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"gtucolorer"
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public static class GTUCOLORERS {
@XmlElement(name = "GTUCOLORER", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected List<GTUCOLORERTYPE> gtucolorer;
/**
* Gets the value of the gtucolorer property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the gtucolorer property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getGTUCOLORER().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link GTUCOLORERTYPE }
*
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public List<GTUCOLORERTYPE> getGTUCOLORER() {
if (gtucolorer == null) {
gtucolorer = new ArrayList<GTUCOLORERTYPE>();
}
return this.gtucolorer;
}
}
}