OTS.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">
* <sequence>
* <element ref="{http://www.opentrafficsim.org/ots}DEFINITIONS"/>
* <element ref="{http://www.opentrafficsim.org/ots}NETWORK"/>
* <element ref="{http://www.opentrafficsim.org/ots}NETWORKDEMAND" maxOccurs="unbounded"/>
* <element ref="{http://www.opentrafficsim.org/ots}CONTROL" maxOccurs="unbounded"/>
* <element ref="{http://www.opentrafficsim.org/ots}MODEL"/>
* <element ref="{http://www.opentrafficsim.org/ots}SCENARIO"/>
* <element ref="{http://www.opentrafficsim.org/ots}RUN"/>
* <element ref="{http://www.opentrafficsim.org/ots}ANIMATION"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"definitions",
"network",
"networkdemand",
"control",
"model",
"scenario",
"run",
"animation"
})
@XmlRootElement(name = "OTS")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public class OTS {
@XmlElement(name = "DEFINITIONS", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected DEFINITIONS definitions;
@XmlElement(name = "NETWORK", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected NETWORK network;
@XmlElement(name = "NETWORKDEMAND", 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<NETWORKDEMAND> networkdemand;
@XmlElement(name = "CONTROL", 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<CONTROL> control;
@XmlElement(name = "MODEL", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected MODEL model;
@XmlElement(name = "SCENARIO", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected SCENARIO scenario;
@XmlElement(name = "RUN", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected RUN run;
@XmlElement(name = "ANIMATION", required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
protected ANIMATION animation;
/**
* Gets the value of the definitions property.
*
* @return
* possible object is
* {@link DEFINITIONS }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public DEFINITIONS getDEFINITIONS() {
return definitions;
}
/**
* Sets the value of the definitions property.
*
* @param value
* allowed object is
* {@link DEFINITIONS }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public void setDEFINITIONS(DEFINITIONS value) {
this.definitions = value;
}
/**
* Gets the value of the network property.
*
* @return
* possible object is
* {@link NETWORK }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public NETWORK getNETWORK() {
return network;
}
/**
* Sets the value of the network property.
*
* @param value
* allowed object is
* {@link NETWORK }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public void setNETWORK(NETWORK value) {
this.network = value;
}
/**
* Gets the value of the networkdemand 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 networkdemand property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getNETWORKDEMAND().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link NETWORKDEMAND }
*
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public List<NETWORKDEMAND> getNETWORKDEMAND() {
if (networkdemand == null) {
networkdemand = new ArrayList<NETWORKDEMAND>();
}
return this.networkdemand;
}
/**
* Gets the value of the control 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 control property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getCONTROL().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link CONTROL }
*
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public List<CONTROL> getCONTROL() {
if (control == null) {
control = new ArrayList<CONTROL>();
}
return this.control;
}
/**
* Gets the value of the model property.
*
* @return
* possible object is
* {@link MODEL }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public MODEL getMODEL() {
return model;
}
/**
* Sets the value of the model property.
*
* @param value
* allowed object is
* {@link MODEL }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public void setMODEL(MODEL value) {
this.model = value;
}
/**
* Gets the value of the scenario property.
*
* @return
* possible object is
* {@link SCENARIO }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public SCENARIO getSCENARIO() {
return scenario;
}
/**
* Sets the value of the scenario property.
*
* @param value
* allowed object is
* {@link SCENARIO }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public void setSCENARIO(SCENARIO value) {
this.scenario = value;
}
/**
* Gets the value of the run property.
*
* @return
* possible object is
* {@link RUN }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public RUN getRUN() {
return run;
}
/**
* Sets the value of the run property.
*
* @param value
* allowed object is
* {@link RUN }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public void setRUN(RUN value) {
this.run = value;
}
/**
* Gets the value of the animation property.
*
* @return
* possible object is
* {@link ANIMATION }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public ANIMATION getANIMATION() {
return animation;
}
/**
* Sets the value of the animation property.
*
* @param value
* allowed object is
* {@link ANIMATION }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
public void setANIMATION(ANIMATION value) {
this.animation = value;
}
}