// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 // See https://javaee.github.io/jaxb-v2/ // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2022.02.24 at 11:10:08 PM CET // package org.opentrafficsim.xml.generated; import java.io.Serializable; 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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence maxOccurs="unbounded" minOccurs="0">
 *         <element ref="{http://www.w3.org/2001/XInclude}include" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.opentrafficsim.org/ots}GTUTYPES" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.opentrafficsim.org/ots}GTUTEMPLATES" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.opentrafficsim.org/ots}LINKTYPES" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.opentrafficsim.org/ots}LANETYPES" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.opentrafficsim.org/ots}ROADLAYOUTS" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.opentrafficsim.org/ots}PARAMETERTYPES" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute ref="{http://www.w3.org/XML/1998/namespace}base"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "includeAndGTUTYPESAndGTUTEMPLATES" }) @XmlRootElement(name = "DEFINITIONS") @Generated(value = "com.sun.tools.xjc.Driver", date = "2022-02-24T11:10:08+01:00", comments = "JAXB RI v2.3.0") public class DEFINITIONS implements Serializable { @Generated(value = "com.sun.tools.xjc.Driver", date = "2022-02-24T11:10:08+01:00", comments = "JAXB RI v2.3.0") private final static long serialVersionUID = 10102L; @XmlElements({ @XmlElement(name = "include", namespace = "http://www.w3.org/2001/XInclude", type = IncludeType.class), @XmlElement(name = "GTUTYPES", type = GTUTYPES.class), @XmlElement(name = "GTUTEMPLATES", type = GTUTEMPLATES.class), @XmlElement(name = "LINKTYPES", type = LINKTYPES.class), @XmlElement(name = "LANETYPES", type = LANETYPES.class), @XmlElement(name = "ROADLAYOUTS", type = ROADLAYOUTS.class), @XmlElement(name = "PARAMETERTYPES", type = PARAMETERTYPES.class) }) @Generated(value = "com.sun.tools.xjc.Driver", date = "2022-02-24T11:10:08+01:00", comments = "JAXB RI v2.3.0") protected List includeAndGTUTYPESAndGTUTEMPLATES; @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace") @XmlSchemaType(name = "anyURI") @Generated(value = "com.sun.tools.xjc.Driver", date = "2022-02-24T11:10:08+01:00", comments = "JAXB RI v2.3.0") protected String base; /** * Gets the value of the includeAndGTUTYPESAndGTUTEMPLATES property. * *

* 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 set method for the includeAndGTUTYPESAndGTUTEMPLATES property. * *

* For example, to add a new item, do as follows: *

     *    getIncludeAndGTUTYPESAndGTUTEMPLATES().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link IncludeType } * {@link GTUTYPES } * {@link GTUTEMPLATES } * {@link LINKTYPES } * {@link LANETYPES } * {@link ROADLAYOUTS } * {@link PARAMETERTYPES } * * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2022-02-24T11:10:08+01:00", comments = "JAXB RI v2.3.0") public List getIncludeAndGTUTYPESAndGTUTEMPLATES() { if (includeAndGTUTYPESAndGTUTEMPLATES == null) { includeAndGTUTYPESAndGTUTEMPLATES = new ArrayList(); } return this.includeAndGTUTYPESAndGTUTEMPLATES; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2022-02-24T11:10:08+01:00", comments = "JAXB RI v2.3.0") public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2022-02-24T11:10:08+01:00", comments = "JAXB RI v2.3.0") public void setBase(String value) { this.base = value; } }