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

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

  43.     /**
  44.      * Gets the value of the id property.
  45.      *
  46.      * @return
  47.      *     possible object is
  48.      *     {@link String }
  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 String getID() {
  53.         return id;
  54.     }

  55.     /**
  56.      * Sets the value of the id property.
  57.      *
  58.      * @param value
  59.      *     allowed 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 void setID(String value) {
  65.         this.id = value;
  66.     }

  67. }