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  
18  
19  /**
20   * <p>Java class for CARFOLLOWINGMODELTYPE complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType name="CARFOLLOWINGMODELTYPE"&gt;
26   *   &lt;complexContent&gt;
27   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
28   *       &lt;choice&gt;
29   *         &lt;element name="IDM" type="{http://www.opentrafficsim.org/ots}CARFOLLOWINGMODELHEADWAYSPEEDTYPE"/&gt;
30   *         &lt;element name="IDMPLUS" type="{http://www.opentrafficsim.org/ots}CARFOLLOWINGMODELHEADWAYSPEEDTYPE"/&gt;
31   *       &lt;/choice&gt;
32   *     &lt;/restriction&gt;
33   *   &lt;/complexContent&gt;
34   * &lt;/complexType&gt;
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "CARFOLLOWINGMODELTYPE", propOrder = {
41      "idm",
42      "idmplus"
43  })
44  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
45  public class CARFOLLOWINGMODELTYPE
46      implements Serializable
47  {
48  
49      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
50      private final static long serialVersionUID = 10102L;
51      @XmlElement(name = "IDM")
52      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
53      protected CARFOLLOWINGMODELHEADWAYSPEEDTYPE idm;
54      @XmlElement(name = "IDMPLUS")
55      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
56      protected CARFOLLOWINGMODELHEADWAYSPEEDTYPE idmplus;
57  
58      /**
59       * Gets the value of the idm property.
60       * 
61       * @return
62       *     possible object is
63       *     {@link CARFOLLOWINGMODELHEADWAYSPEEDTYPE }
64       *     
65       */
66      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
67      public CARFOLLOWINGMODELHEADWAYSPEEDTYPE getIDM() {
68          return idm;
69      }
70  
71      /**
72       * Sets the value of the idm property.
73       * 
74       * @param value
75       *     allowed object is
76       *     {@link CARFOLLOWINGMODELHEADWAYSPEEDTYPE }
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 void setIDM(CARFOLLOWINGMODELHEADWAYSPEEDTYPE value) {
81          this.idm = value;
82      }
83  
84      /**
85       * Gets the value of the idmplus property.
86       * 
87       * @return
88       *     possible object is
89       *     {@link CARFOLLOWINGMODELHEADWAYSPEEDTYPE }
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 CARFOLLOWINGMODELHEADWAYSPEEDTYPE getIDMPLUS() {
94          return idmplus;
95      }
96  
97      /**
98       * Sets the value of the idmplus property.
99       * 
100      * @param value
101      *     allowed object is
102      *     {@link CARFOLLOWINGMODELHEADWAYSPEEDTYPE }
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 void setIDMPLUS(CARFOLLOWINGMODELHEADWAYSPEEDTYPE value) {
107         this.idmplus = value;
108     }
109 
110 }