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.XmlAttribute;
16  import javax.xml.bind.annotation.XmlType;
17  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18  import org.djunits.value.vdouble.scalar.Acceleration;
19  import org.opentrafficsim.xml.bindings.AccelerationAdapter;
20  
21  
22  /**
23   * <p>Java class for PARAMETERTYPEACCELERATION complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="PARAMETERTYPEACCELERATION"&gt;
29   *   &lt;complexContent&gt;
30   *     &lt;extension base="{http://www.opentrafficsim.org/ots}PARAMETERTYPE"&gt;
31   *       &lt;attribute name="DEFAULT" type="{http://www.opentrafficsim.org/ots}ACCELERATIONTYPE" /&gt;
32   *     &lt;/extension&gt;
33   *   &lt;/complexContent&gt;
34   * &lt;/complexType&gt;
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "PARAMETERTYPEACCELERATION")
41  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
42  public class PARAMETERTYPEACCELERATION
43      extends PARAMETERTYPE
44      implements Serializable
45  {
46  
47      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
48      private final static long serialVersionUID = 10102L;
49      @XmlAttribute(name = "DEFAULT")
50      @XmlJavaTypeAdapter(AccelerationAdapter.class)
51      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
52      protected Acceleration _default;
53  
54      /**
55       * Gets the value of the default property.
56       * 
57       * @return
58       *     possible object is
59       *     {@link String }
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      public Acceleration getDEFAULT() {
64          return _default;
65      }
66  
67      /**
68       * Sets the value of the default property.
69       * 
70       * @param value
71       *     allowed object is
72       *     {@link String }
73       *     
74       */
75      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
76      public void setDEFAULT(Acceleration value) {
77          this._default = value;
78      }
79  
80  }