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