CONNECTOR.java

  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: 2020.08.12 at 04:40:29 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.XmlRootElement;
  14. import javax.xml.bind.annotation.XmlType;
  15. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  16. import org.opentrafficsim.xml.bindings.FractionAdapter;


  17. /**
  18.  * <p>Java class for anonymous complex type.
  19.  *
  20.  * <p>The following schema fragment specifies the expected content contained within this class.
  21.  *
  22.  * <pre>
  23.  * &lt;complexType&gt;
  24.  *   &lt;complexContent&gt;
  25.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  26.  *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
  27.  *       &lt;attribute name="NODESTART" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
  28.  *       &lt;attribute name="NODEEND" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
  29.  *       &lt;attribute name="DEMANDWEIGHT" type="{http://www.opentrafficsim.org/ots}FRACTIONTYPE" /&gt;
  30.  *     &lt;/restriction&gt;
  31.  *   &lt;/complexContent&gt;
  32.  * &lt;/complexType&gt;
  33.  * </pre>
  34.  *
  35.  *
  36.  */
  37. @XmlAccessorType(XmlAccessType.FIELD)
  38. @XmlType(name = "")
  39. @XmlRootElement(name = "CONNECTOR")
  40. @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  41. public class CONNECTOR implements Serializable
  42. {

  43.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  44.     private final static long serialVersionUID = 10102L;
  45.     @XmlAttribute(name = "ID", required = true)
  46.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  47.     protected String id;
  48.     @XmlAttribute(name = "NODESTART", required = true)
  49.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  50.     protected String nodestart;
  51.     @XmlAttribute(name = "NODEEND", required = true)
  52.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  53.     protected String nodeend;
  54.     @XmlAttribute(name = "DEMANDWEIGHT")
  55.     @XmlJavaTypeAdapter(FractionAdapter.class)
  56.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  57.     protected Double demandweight;

  58.     /**
  59.      * Gets the value of the id property.
  60.      *
  61.      * @return
  62.      *     possible object is
  63.      *     {@link String }
  64.      *    
  65.      */
  66.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  67.     public String getID() {
  68.         return id;
  69.     }

  70.     /**
  71.      * Sets the value of the id property.
  72.      *
  73.      * @param value
  74.      *     allowed object is
  75.      *     {@link String }
  76.      *    
  77.      */
  78.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  79.     public void setID(String value) {
  80.         this.id = value;
  81.     }

  82.     /**
  83.      * Gets the value of the nodestart property.
  84.      *
  85.      * @return
  86.      *     possible object is
  87.      *     {@link String }
  88.      *    
  89.      */
  90.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  91.     public String getNODESTART() {
  92.         return nodestart;
  93.     }

  94.     /**
  95.      * Sets the value of the nodestart property.
  96.      *
  97.      * @param value
  98.      *     allowed object is
  99.      *     {@link String }
  100.      *    
  101.      */
  102.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  103.     public void setNODESTART(String value) {
  104.         this.nodestart = value;
  105.     }

  106.     /**
  107.      * Gets the value of the nodeend property.
  108.      *
  109.      * @return
  110.      *     possible object is
  111.      *     {@link String }
  112.      *    
  113.      */
  114.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  115.     public String getNODEEND() {
  116.         return nodeend;
  117.     }

  118.     /**
  119.      * Sets the value of the nodeend property.
  120.      *
  121.      * @param value
  122.      *     allowed object is
  123.      *     {@link String }
  124.      *    
  125.      */
  126.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  127.     public void setNODEEND(String value) {
  128.         this.nodeend = value;
  129.     }

  130.     /**
  131.      * Gets the value of the demandweight property.
  132.      *
  133.      * @return
  134.      *     possible object is
  135.      *     {@link String }
  136.      *    
  137.      */
  138.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  139.     public Double getDEMANDWEIGHT() {
  140.         return demandweight;
  141.     }

  142.     /**
  143.      * Sets the value of the demandweight property.
  144.      *
  145.      * @param value
  146.      *     allowed object is
  147.      *     {@link String }
  148.      *    
  149.      */
  150.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  151.     public void setDEMANDWEIGHT(Double value) {
  152.         this.demandweight = value;
  153.     }

  154. }