PARAMETERLONG.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.XmlType;
  14. import javax.xml.bind.annotation.XmlValue;


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

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

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

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

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

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

  87. }