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.03.16 at 06:21:55 PM CET 
6   //
7   
8   
9   package org.opentrafficsim.xml.generated;
10  
11  import java.util.ArrayList;
12  import java.util.List;
13  import javax.annotation.Generated;
14  import javax.xml.bind.annotation.XmlAccessType;
15  import javax.xml.bind.annotation.XmlAccessorType;
16  import javax.xml.bind.annotation.XmlAttribute;
17  import javax.xml.bind.annotation.XmlElement;
18  import javax.xml.bind.annotation.XmlElements;
19  import javax.xml.bind.annotation.XmlRootElement;
20  import javax.xml.bind.annotation.XmlSchemaType;
21  import javax.xml.bind.annotation.XmlType;
22  
23  
24  /**
25   * <p>Java class for anonymous complex type.
26   * 
27   * <p>The following schema fragment specifies the expected content contained within this class.
28   * 
29   * <pre>
30   * &lt;complexType&gt;
31   *   &lt;complexContent&gt;
32   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
33   *       &lt;sequence&gt;
34   *         &lt;choice maxOccurs="unbounded"&gt;
35   *           &lt;element ref="{http://www.w3.org/2001/XInclude}include" maxOccurs="unbounded" minOccurs="0"/&gt;
36   *           &lt;element ref="{http://www.opentrafficsim.org/ots}GTUTYPES" maxOccurs="unbounded" minOccurs="0"/&gt;
37   *           &lt;element ref="{http://www.opentrafficsim.org/ots}GTUTEMPLATES" maxOccurs="unbounded" minOccurs="0"/&gt;
38   *           &lt;element ref="{http://www.opentrafficsim.org/ots}LANETYPES" maxOccurs="unbounded" minOccurs="0"/&gt;
39   *           &lt;element ref="{http://www.opentrafficsim.org/ots}LINKTYPES" maxOccurs="unbounded" minOccurs="0"/&gt;
40   *           &lt;element ref="{http://www.opentrafficsim.org/ots}ROADLAYOUT" maxOccurs="unbounded" minOccurs="0"/&gt;
41   *         &lt;/choice&gt;
42   *       &lt;/sequence&gt;
43   *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
44   *     &lt;/restriction&gt;
45   *   &lt;/complexContent&gt;
46   * &lt;/complexType&gt;
47   * </pre>
48   * 
49   * 
50   */
51  @XmlAccessorType(XmlAccessType.FIELD)
52  @XmlType(name = "", propOrder = {
53      "includeOrGTUTYPESOrGTUTEMPLATES"
54  })
55  @XmlRootElement(name = "DEFINITIONS")
56  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
57  public class DEFINITIONS {
58  
59      @XmlElements({
60          @XmlElement(name = "include", namespace = "http://www.w3.org/2001/XInclude", type = IncludeType.class),
61          @XmlElement(name = "GTUTYPES", type = GTUTYPES.class),
62          @XmlElement(name = "GTUTEMPLATES", type = GTUTEMPLATES.class),
63          @XmlElement(name = "LANETYPES", type = LANETYPES.class),
64          @XmlElement(name = "LINKTYPES", type = LINKTYPES.class),
65          @XmlElement(name = "ROADLAYOUT", type = ROADLAYOUT.class)
66      })
67      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
68      protected List<Object> includeOrGTUTYPESOrGTUTEMPLATES;
69      @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
70      @XmlSchemaType(name = "anyURI")
71      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
72      protected String base;
73  
74      /**
75       * Gets the value of the includeOrGTUTYPESOrGTUTEMPLATES property.
76       * 
77       * <p>
78       * This accessor method returns a reference to the live list,
79       * not a snapshot. Therefore any modification you make to the
80       * returned list will be present inside the JAXB object.
81       * This is why there is not a <CODE>set</CODE> method for the includeOrGTUTYPESOrGTUTEMPLATES property.
82       * 
83       * <p>
84       * For example, to add a new item, do as follows:
85       * <pre>
86       *    getIncludeOrGTUTYPESOrGTUTEMPLATES().add(newItem);
87       * </pre>
88       * 
89       * 
90       * <p>
91       * Objects of the following type(s) are allowed in the list
92       * {@link IncludeType }
93       * {@link GTUTYPES }
94       * {@link GTUTEMPLATES }
95       * {@link LANETYPES }
96       * {@link LINKTYPES }
97       * {@link ROADLAYOUT }
98       * 
99       * 
100      */
101     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
102     public List<Object> getIncludeOrGTUTYPESOrGTUTEMPLATES() {
103         if (includeOrGTUTYPESOrGTUTEMPLATES == null) {
104             includeOrGTUTYPESOrGTUTEMPLATES = new ArrayList<Object>();
105         }
106         return this.includeOrGTUTYPESOrGTUTEMPLATES;
107     }
108 
109     /**
110      * Gets the value of the base property.
111      * 
112      * @return
113      *     possible object is
114      *     {@link String }
115      *     
116      */
117     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
118     public String getBase() {
119         return base;
120     }
121 
122     /**
123      * Sets the value of the base property.
124      * 
125      * @param value
126      *     allowed object is
127      *     {@link String }
128      *     
129      */
130     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
131     public void setBase(String value) {
132         this.base = value;
133     }
134 
135 }