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.XmlSeeAlso;
17  import javax.xml.bind.annotation.XmlType;
18  
19  
20  /**
21   * <p>Java class for ACCELERATIONDISTTYPE complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType name="ACCELERATIONDISTTYPE"&gt;
27   *   &lt;complexContent&gt;
28   *     &lt;extension base="{http://www.opentrafficsim.org/ots}CONTDISTTYPE"&gt;
29   *       &lt;attribute name="ACCELERATIONUNIT" type="{http://www.opentrafficsim.org/ots}ACCELERATIONUNITTYPE" /&gt;
30   *     &lt;/extension&gt;
31   *   &lt;/complexContent&gt;
32   * &lt;/complexType&gt;
33   * </pre>
34   * 
35   * 
36   */
37  @XmlAccessorType(XmlAccessType.FIELD)
38  @XmlType(name = "ACCELERATIONDISTTYPE")
39  @XmlSeeAlso({
40      PARAMETERACCELERATIONDIST.class
41  })
42  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
43  public class ACCELERATIONDISTTYPE
44      extends CONTDISTTYPE
45      implements Serializable
46  {
47  
48      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
49      private final static long serialVersionUID = 10102L;
50      @XmlAttribute(name = "ACCELERATIONUNIT")
51      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
52      protected String accelerationunit;
53  
54      /**
55       * Gets the value of the accelerationunit 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 String getACCELERATIONUNIT() {
64          return accelerationunit;
65      }
66  
67      /**
68       * Sets the value of the accelerationunit 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 setACCELERATIONUNIT(String value) {
77          this.accelerationunit = value;
78      }
79  
80  }