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 DESIREDSPEEDMODELTYPE complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType name="DESIREDSPEEDMODELTYPE"&gt;
28   *   &lt;complexContent&gt;
29   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
30   *       &lt;choice&gt;
31   *         &lt;element name="IDM" type="{http://www.w3.org/2001/XMLSchema}anyType"/&gt;
32   *         &lt;element name="SOCIO" type="{http://www.opentrafficsim.org/ots}DESIREDSPEEDMODELTYPE"/&gt;
33   *         &lt;element name="CLASS" type="{http://www.opentrafficsim.org/ots}CLASSNAMETYPE"/&gt;
34   *       &lt;/choice&gt;
35   *     &lt;/restriction&gt;
36   *   &lt;/complexContent&gt;
37   * &lt;/complexType&gt;
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "DESIREDSPEEDMODELTYPE", propOrder = {
44      "idm",
45      "socio",
46      "_class"
47  })
48  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
49  public class DESIREDSPEEDMODELTYPE
50      implements Serializable
51  {
52  
53      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
54      private final static long serialVersionUID = 10102L;
55      @XmlElement(name = "IDM")
56      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
57      protected Object idm;
58      @XmlElement(name = "SOCIO")
59      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
60      protected DESIREDSPEEDMODELTYPE socio;
61      @XmlElement(name = "CLASS", type = String.class)
62      @XmlJavaTypeAdapter(ClassNameAdapter.class)
63      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
64      protected Class _class;
65  
66      /**
67       * Gets the value of the idm property.
68       * 
69       * @return
70       *     possible object is
71       *     {@link Object }
72       *     
73       */
74      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
75      public Object getIDM() {
76          return idm;
77      }
78  
79      /**
80       * Sets the value of the idm property.
81       * 
82       * @param value
83       *     allowed object is
84       *     {@link Object }
85       *     
86       */
87      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
88      public void setIDM(Object value) {
89          this.idm = value;
90      }
91  
92      /**
93       * Gets the value of the socio property.
94       * 
95       * @return
96       *     possible object is
97       *     {@link DESIREDSPEEDMODELTYPE }
98       *     
99       */
100     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
101     public DESIREDSPEEDMODELTYPE getSOCIO() {
102         return socio;
103     }
104 
105     /**
106      * Sets the value of the socio property.
107      * 
108      * @param value
109      *     allowed object is
110      *     {@link DESIREDSPEEDMODELTYPE }
111      *     
112      */
113     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
114     public void setSOCIO(DESIREDSPEEDMODELTYPE value) {
115         this.socio = value;
116     }
117 
118     /**
119      * Gets the value of the class property.
120      * 
121      * @return
122      *     possible object is
123      *     {@link String }
124      *     
125      */
126     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
127     public Class getCLASS() {
128         return _class;
129     }
130 
131     /**
132      * Sets the value of the class property.
133      * 
134      * @param value
135      *     allowed object is
136      *     {@link String }
137      *     
138      */
139     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
140     public void setCLASS(Class value) {
141         this._class = value;
142     }
143 
144 }