PARAMETERACCELERATION.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. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  17. import org.djunits.value.vdouble.scalar.Acceleration;
  18. import org.opentrafficsim.xml.bindings.AccelerationAdapter;


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

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

  55.     /**
  56.      * Gets the value of the value property.
  57.      *
  58.      * @return
  59.      *     possible object is
  60.      *     {@link String }
  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 Acceleration getValue() {
  65.         return value;
  66.     }

  67.     /**
  68.      * Sets the value of the value property.
  69.      *
  70.      * @param value
  71.      *     allowed 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 void setValue(Acceleration value) {
  77.         this.value = value;
  78.     }

  79.     /**
  80.      * Gets the value of the id property.
  81.      *
  82.      * @return
  83.      *     possible 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 String getID() {
  89.         return id;
  90.     }

  91.     /**
  92.      * Sets the value of the id property.
  93.      *
  94.      * @param value
  95.      *     allowed object is
  96.      *     {@link String }
  97.      *    
  98.      */
  99.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  100.     public void setID(String value) {
  101.         this.id = value;
  102.     }

  103. }