PARAMETERDOUBLE.java

  1. //
  2. // This file was generated by the Eclipse Implementation of JAXB, v2.3.6
  3. // See https://eclipse-ee4j.github.io/jaxb-ri
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2022.09.04 at 02:31:11 AM CEST
  6. //


  7. package org.opentrafficsim.xml.generated;

  8. import java.io.Serializable;
  9. import javax.annotation.Generated;
  10. import javax.xml.bind.annotation.XmlAccessType;
  11. import javax.xml.bind.annotation.XmlAccessorType;
  12. import javax.xml.bind.annotation.XmlAttribute;
  13. import javax.xml.bind.annotation.XmlSeeAlso;
  14. import javax.xml.bind.annotation.XmlType;
  15. import javax.xml.bind.annotation.XmlValue;


  16. /**
  17.  * <p>Java class for PARAMETERDOUBLE complex type.
  18.  *
  19.  * <p>The following schema fragment specifies the expected content contained within this class.
  20.  *
  21.  * <pre>
  22.  * &lt;complexType name="PARAMETERDOUBLE"&gt;
  23.  *   &lt;simpleContent&gt;
  24.  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;double"&gt;
  25.  *       &lt;attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
  26.  *     &lt;/extension&gt;
  27.  *   &lt;/simpleContent&gt;
  28.  * &lt;/complexType&gt;
  29.  * </pre>
  30.  *
  31.  *
  32.  */
  33. @XmlAccessorType(XmlAccessType.FIELD)
  34. @XmlType(name = "PARAMETERDOUBLE", propOrder = {
  35.     "value"
  36. })
  37. @XmlSeeAlso({
  38.     org.opentrafficsim.xml.generated.MODELTYPE.MODELPARAMETERS.DOUBLE.class
  39. })
  40. @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  41. public class PARAMETERDOUBLE implements Serializable
  42. {

  43.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  44.     private final static long serialVersionUID = 10102L;
  45.     @XmlValue
  46.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  47.     protected double value;
  48.     @XmlAttribute(name = "ID")
  49.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  50.     protected String id;

  51.     /**
  52.      * Gets the value of the value property.
  53.      *
  54.      */
  55.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  56.     public double getValue() {
  57.         return value;
  58.     }

  59.     /**
  60.      * Sets the value of the value property.
  61.      *
  62.      */
  63.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  64.     public void setValue(double value) {
  65.         this.value = value;
  66.     }

  67.     /**
  68.      * Gets the value of the id property.
  69.      *
  70.      * @return
  71.      *     possible object is
  72.      *     {@link String }
  73.      *    
  74.      */
  75.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  76.     public String getID() {
  77.         return id;
  78.     }

  79.     /**
  80.      * Sets the value of the id property.
  81.      *
  82.      * @param value
  83.      *     allowed object is
  84.      *     {@link String }
  85.      *    
  86.      */
  87.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  88.     public void setID(String value) {
  89.         this.id = value;
  90.     }

  91. }