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.04.20 at 02:12:22 AM CEST 
6   //
7   
8   
9   package org.opentrafficsim.xml.generated;
10  
11  import java.io.Serializable;
12  import javax.annotation.Generated;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlElement;
16  import javax.xml.bind.annotation.XmlType;
17  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18  import org.opentrafficsim.xml.bindings.ClassNameAdapter;
19  
20  
21  /**
22   * <p>Java class for CARFOLLOWINGMODELHEADWAYSPEEDTYPE complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType name="CARFOLLOWINGMODELHEADWAYSPEEDTYPE"&gt;
28   *   &lt;complexContent&gt;
29   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
30   *       &lt;sequence&gt;
31   *         &lt;element name="DESIREDHEADWAYMODEL" minOccurs="0"&gt;
32   *           &lt;complexType&gt;
33   *             &lt;complexContent&gt;
34   *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
35   *                 &lt;choice&gt;
36   *                   &lt;element name="IDM" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
37   *                   &lt;element name="CLASS" type="{http://www.opentrafficsim.org/ots}CLASSNAMETYPE"/&gt;
38   *                 &lt;/choice&gt;
39   *               &lt;/restriction&gt;
40   *             &lt;/complexContent&gt;
41   *           &lt;/complexType&gt;
42   *         &lt;/element&gt;
43   *         &lt;element name="DESIREDSPEEDMODEL" type="{http://www.opentrafficsim.org/ots}DESIREDSPEEDMODELTYPE" minOccurs="0"/&gt;
44   *       &lt;/sequence&gt;
45   *     &lt;/restriction&gt;
46   *   &lt;/complexContent&gt;
47   * &lt;/complexType&gt;
48   * </pre>
49   * 
50   * 
51   */
52  @XmlAccessorType(XmlAccessType.FIELD)
53  @XmlType(name = "CARFOLLOWINGMODELHEADWAYSPEEDTYPE", propOrder = {
54      "desiredheadwaymodel",
55      "desiredspeedmodel"
56  })
57  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
58  public class CARFOLLOWINGMODELHEADWAYSPEEDTYPE
59      implements Serializable
60  {
61  
62      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
63      private final static long serialVersionUID = 10102L;
64      @XmlElement(name = "DESIREDHEADWAYMODEL")
65      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
66      protected CARFOLLOWINGMODELHEADWAYSPEEDTYPE.DESIREDHEADWAYMODEL desiredheadwaymodel;
67      @XmlElement(name = "DESIREDSPEEDMODEL")
68      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
69      protected DESIREDSPEEDMODELTYPE desiredspeedmodel;
70  
71      /**
72       * Gets the value of the desiredheadwaymodel property.
73       * 
74       * @return
75       *     possible object is
76       *     {@link CARFOLLOWINGMODELHEADWAYSPEEDTYPE.DESIREDHEADWAYMODEL }
77       *     
78       */
79      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
80      public CARFOLLOWINGMODELHEADWAYSPEEDTYPE.DESIREDHEADWAYMODEL getDESIREDHEADWAYMODEL() {
81          return desiredheadwaymodel;
82      }
83  
84      /**
85       * Sets the value of the desiredheadwaymodel property.
86       * 
87       * @param value
88       *     allowed object is
89       *     {@link CARFOLLOWINGMODELHEADWAYSPEEDTYPE.DESIREDHEADWAYMODEL }
90       *     
91       */
92      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
93      public void setDESIREDHEADWAYMODEL(CARFOLLOWINGMODELHEADWAYSPEEDTYPE.DESIREDHEADWAYMODEL value) {
94          this.desiredheadwaymodel = value;
95      }
96  
97      /**
98       * Gets the value of the desiredspeedmodel property.
99       * 
100      * @return
101      *     possible object is
102      *     {@link DESIREDSPEEDMODELTYPE }
103      *     
104      */
105     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
106     public DESIREDSPEEDMODELTYPE getDESIREDSPEEDMODEL() {
107         return desiredspeedmodel;
108     }
109 
110     /**
111      * Sets the value of the desiredspeedmodel property.
112      * 
113      * @param value
114      *     allowed object is
115      *     {@link DESIREDSPEEDMODELTYPE }
116      *     
117      */
118     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
119     public void setDESIREDSPEEDMODEL(DESIREDSPEEDMODELTYPE value) {
120         this.desiredspeedmodel = value;
121     }
122 
123 
124     /**
125      * <p>Java class for anonymous complex type.
126      * 
127      * <p>The following schema fragment specifies the expected content contained within this class.
128      * 
129      * <pre>
130      * &lt;complexType&gt;
131      *   &lt;complexContent&gt;
132      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
133      *       &lt;choice&gt;
134      *         &lt;element name="IDM" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
135      *         &lt;element name="CLASS" type="{http://www.opentrafficsim.org/ots}CLASSNAMETYPE"/&gt;
136      *       &lt;/choice&gt;
137      *     &lt;/restriction&gt;
138      *   &lt;/complexContent&gt;
139      * &lt;/complexType&gt;
140      * </pre>
141      * 
142      * 
143      */
144     @XmlAccessorType(XmlAccessType.FIELD)
145     @XmlType(name = "", propOrder = {
146         "idm",
147         "_class"
148     })
149     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
150     public static class DESIREDHEADWAYMODEL
151         implements Serializable
152     {
153 
154         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
155         private final static long serialVersionUID = 10102L;
156         @XmlElement(name = "IDM")
157         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
158         protected Object idm;
159         @XmlElement(name = "CLASS", type = String.class)
160         @XmlJavaTypeAdapter(ClassNameAdapter.class)
161         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
162         protected Class _class;
163 
164         /**
165          * Gets the value of the idm property.
166          * 
167          * @return
168          *     possible object is
169          *     {@link Object }
170          *     
171          */
172         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
173         public Object getIDM() {
174             return idm;
175         }
176 
177         /**
178          * Sets the value of the idm property.
179          * 
180          * @param value
181          *     allowed object is
182          *     {@link Object }
183          *     
184          */
185         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
186         public void setIDM(Object value) {
187             this.idm = value;
188         }
189 
190         /**
191          * Gets the value of the class property.
192          * 
193          * @return
194          *     possible object is
195          *     {@link String }
196          *     
197          */
198         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
199         public Class getCLASS() {
200             return _class;
201         }
202 
203         /**
204          * Sets the value of the class property.
205          * 
206          * @param value
207          *     allowed object is
208          *     {@link String }
209          *     
210          */
211         @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
212         public void setCLASS(Class value) {
213             this._class = value;
214         }
215 
216     }
217 
218 }