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  
19  
20  /**
21   * <p>Java class for anonymous complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType&gt;
27   *   &lt;complexContent&gt;
28   *     &lt;extension base="{http://www.opentrafficsim.org/ots}BASICROADLAYOUT"&gt;
29   *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
30   *       &lt;attribute name="LINKTYPE" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
31   *     &lt;/extension&gt;
32   *   &lt;/complexContent&gt;
33   * &lt;/complexType&gt;
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "")
40  @XmlRootElement(name = "ROADLAYOUT")
41  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
42  public class ROADLAYOUT
43      extends BASICROADLAYOUT
44      implements Serializable
45  {
46  
47      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
48      private final static long serialVersionUID = 10102L;
49      @XmlAttribute(name = "ID", required = true)
50      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
51      protected String id;
52      @XmlAttribute(name = "LINKTYPE", 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 linktype;
55  
56      /**
57       * Gets the value of the id property.
58       * 
59       * @return
60       *     possible object is
61       *     {@link String }
62       *     
63       */
64      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
65      public String getID() {
66          return id;
67      }
68  
69      /**
70       * Sets the value of the id property.
71       * 
72       * @param value
73       *     allowed object is
74       *     {@link String }
75       *     
76       */
77      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
78      public void setID(String value) {
79          this.id = value;
80      }
81  
82      /**
83       * Gets the value of the linktype property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link String }
88       *     
89       */
90      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
91      public String getLINKTYPE() {
92          return linktype;
93      }
94  
95      /**
96       * Sets the value of the linktype property.
97       * 
98       * @param value
99       *     allowed object is
100      *     {@link String }
101      *     
102      */
103     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
104     public void setLINKTYPE(String value) {
105         this.linktype = value;
106     }
107 
108 }