View Javadoc
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: 2019.04.20 at 02:12:22 AM CEST 
6   //
7   
8   
9   package org.opentrafficsim.xml.generated;
10  
11  import java.io.Serializable;
12  import javax.annotation.Generated;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlAttribute;
16  import javax.xml.bind.annotation.XmlRootElement;
17  import javax.xml.bind.annotation.XmlType;
18  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19  import org.opentrafficsim.xml.bindings.FractionAdapter;
20  
21  
22  /**
23   * <p>Java class for anonymous complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType&gt;
29   *   &lt;complexContent&gt;
30   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
31   *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
32   *       &lt;attribute name="NODESTART" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
33   *       &lt;attribute name="NODEEND" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
34   *       &lt;attribute name="DEMANDWEIGHT" type="{http://www.opentrafficsim.org/ots}FRACTIONTYPE" /&gt;
35   *     &lt;/restriction&gt;
36   *   &lt;/complexContent&gt;
37   * &lt;/complexType&gt;
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "")
44  @XmlRootElement(name = "CONNECTOR")
45  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
46  public class CONNECTOR
47      implements Serializable
48  {
49  
50      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
51      private final static long serialVersionUID = 10102L;
52      @XmlAttribute(name = "ID", required = true)
53      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
54      protected String id;
55      @XmlAttribute(name = "NODESTART", required = true)
56      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
57      protected String nodestart;
58      @XmlAttribute(name = "NODEEND", required = true)
59      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
60      protected String nodeend;
61      @XmlAttribute(name = "DEMANDWEIGHT")
62      @XmlJavaTypeAdapter(FractionAdapter.class)
63      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
64      protected Double demandweight;
65  
66      /**
67       * Gets the value of the id property.
68       * 
69       * @return
70       *     possible object is
71       *     {@link String }
72       *     
73       */
74      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
75      public String getID() {
76          return id;
77      }
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", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
88      public void setID(String value) {
89          this.id = value;
90      }
91  
92      /**
93       * Gets the value of the nodestart property.
94       * 
95       * @return
96       *     possible object is
97       *     {@link String }
98       *     
99       */
100     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
101     public String getNODESTART() {
102         return nodestart;
103     }
104 
105     /**
106      * Sets the value of the nodestart property.
107      * 
108      * @param value
109      *     allowed object is
110      *     {@link String }
111      *     
112      */
113     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
114     public void setNODESTART(String value) {
115         this.nodestart = value;
116     }
117 
118     /**
119      * Gets the value of the nodeend property.
120      * 
121      * @return
122      *     possible object is
123      *     {@link String }
124      *     
125      */
126     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
127     public String getNODEEND() {
128         return nodeend;
129     }
130 
131     /**
132      * Sets the value of the nodeend property.
133      * 
134      * @param value
135      *     allowed object is
136      *     {@link String }
137      *     
138      */
139     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
140     public void setNODEEND(String value) {
141         this.nodeend = value;
142     }
143 
144     /**
145      * Gets the value of the demandweight property.
146      * 
147      * @return
148      *     possible object is
149      *     {@link String }
150      *     
151      */
152     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
153     public Double getDEMANDWEIGHT() {
154         return demandweight;
155     }
156 
157     /**
158      * Sets the value of the demandweight property.
159      * 
160      * @param value
161      *     allowed object is
162      *     {@link String }
163      *     
164      */
165     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
166     public void setDEMANDWEIGHT(Double value) {
167         this.demandweight = value;
168     }
169 
170 }