DEFINITIONS.java

  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: 2020.08.12 at 04:40:29 AM CEST
  6. //


  7. package org.opentrafficsim.xml.generated;

  8. import java.io.Serializable;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. import javax.annotation.Generated;
  12. import javax.xml.bind.annotation.XmlAccessType;
  13. import javax.xml.bind.annotation.XmlAccessorType;
  14. import javax.xml.bind.annotation.XmlAttribute;
  15. import javax.xml.bind.annotation.XmlElement;
  16. import javax.xml.bind.annotation.XmlElements;
  17. import javax.xml.bind.annotation.XmlRootElement;
  18. import javax.xml.bind.annotation.XmlSchemaType;
  19. import javax.xml.bind.annotation.XmlType;


  20. /**
  21.  * <p>Java class for anonymous complex type.
  22.  *
  23.  * <p>The following schema fragment specifies the expected content contained within this class.
  24.  *
  25.  * <pre>
  26.  * &lt;complexType&gt;
  27.  *   &lt;complexContent&gt;
  28.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  29.  *       &lt;sequence maxOccurs="unbounded" minOccurs="0"&gt;
  30.  *         &lt;element ref="{http://www.w3.org/2001/XInclude}include" maxOccurs="unbounded" minOccurs="0"/&gt;
  31.  *         &lt;element ref="{http://www.opentrafficsim.org/ots}GTUTYPES" maxOccurs="unbounded" minOccurs="0"/&gt;
  32.  *         &lt;element ref="{http://www.opentrafficsim.org/ots}GTUTEMPLATES" maxOccurs="unbounded" minOccurs="0"/&gt;
  33.  *         &lt;element ref="{http://www.opentrafficsim.org/ots}LINKTYPES" maxOccurs="unbounded" minOccurs="0"/&gt;
  34.  *         &lt;element ref="{http://www.opentrafficsim.org/ots}LANETYPES" maxOccurs="unbounded" minOccurs="0"/&gt;
  35.  *         &lt;element ref="{http://www.opentrafficsim.org/ots}ROADLAYOUTS" maxOccurs="unbounded" minOccurs="0"/&gt;
  36.  *         &lt;element ref="{http://www.opentrafficsim.org/ots}PARAMETERTYPES" maxOccurs="unbounded" minOccurs="0"/&gt;
  37.  *       &lt;/sequence&gt;
  38.  *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
  39.  *     &lt;/restriction&gt;
  40.  *   &lt;/complexContent&gt;
  41.  * &lt;/complexType&gt;
  42.  * </pre>
  43.  *
  44.  *
  45.  */
  46. @XmlAccessorType(XmlAccessType.FIELD)
  47. @XmlType(name = "", propOrder = {
  48.     "includeAndGTUTYPESAndGTUTEMPLATES"
  49. })
  50. @XmlRootElement(name = "DEFINITIONS")
  51. @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  52. public class DEFINITIONS
  53.     implements Serializable
  54. {

  55.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  56.     private final static long serialVersionUID = 10102L;
  57.     @XmlElements({
  58.         @XmlElement(name = "include", namespace = "http://www.w3.org/2001/XInclude", type = IncludeType.class),
  59.         @XmlElement(name = "GTUTYPES", type = GTUTYPES.class),
  60.         @XmlElement(name = "GTUTEMPLATES", type = GTUTEMPLATES.class),
  61.         @XmlElement(name = "LINKTYPES", type = LINKTYPES.class),
  62.         @XmlElement(name = "LANETYPES", type = LANETYPES.class),
  63.         @XmlElement(name = "ROADLAYOUTS", type = ROADLAYOUTS.class),
  64.         @XmlElement(name = "PARAMETERTYPES", type = PARAMETERTYPES.class)
  65.     })
  66.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  67.     protected List<Serializable> includeAndGTUTYPESAndGTUTEMPLATES;
  68.     @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
  69.     @XmlSchemaType(name = "anyURI")
  70.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  71.     protected String base;

  72.     /**
  73.      * Gets the value of the includeAndGTUTYPESAndGTUTEMPLATES property.
  74.      *
  75.      * <p>
  76.      * This accessor method returns a reference to the live list,
  77.      * not a snapshot. Therefore any modification you make to the
  78.      * returned list will be present inside the JAXB object.
  79.      * This is why there is not a <CODE>set</CODE> method for the includeAndGTUTYPESAndGTUTEMPLATES property.
  80.      *
  81.      * <p>
  82.      * For example, to add a new item, do as follows:
  83.      * <pre>
  84.      *    getIncludeAndGTUTYPESAndGTUTEMPLATES().add(newItem);
  85.      * </pre>
  86.      *
  87.      *
  88.      * <p>
  89.      * Objects of the following type(s) are allowed in the list
  90.      * {@link IncludeType }
  91.      * {@link GTUTYPES }
  92.      * {@link GTUTEMPLATES }
  93.      * {@link LINKTYPES }
  94.      * {@link LANETYPES }
  95.      * {@link ROADLAYOUTS }
  96.      * {@link PARAMETERTYPES }
  97.      *
  98.      *
  99.      */
  100.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  101.     public List<Serializable> getIncludeAndGTUTYPESAndGTUTEMPLATES() {
  102.         if (includeAndGTUTYPESAndGTUTEMPLATES == null) {
  103.             includeAndGTUTYPESAndGTUTEMPLATES = new ArrayList<Serializable>();
  104.         }
  105.         return this.includeAndGTUTYPESAndGTUTEMPLATES;
  106.     }

  107.     /**
  108.      * Gets the value of the base property.
  109.      *
  110.      * @return
  111.      *     possible object is
  112.      *     {@link String }
  113.      *    
  114.      */
  115.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  116.     public String getBase() {
  117.         return base;
  118.     }

  119.     /**
  120.      * Sets the value of the base property.
  121.      *
  122.      * @param value
  123.      *     allowed object is
  124.      *     {@link String }
  125.      *    
  126.      */
  127.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  128.     public void setBase(String value) {
  129.         this.base = value;
  130.     }

  131. }