View Javadoc
1   //
2   // This file was generated by the Eclipse Implementation of JAXB, v2.3.7 
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: 2024.08.29 at 06:50:16 PM 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.StringAdapter;
20  import org.opentrafficsim.xml.bindings.types.StringType;
21  
22  
23  /**
24   * <p>Java class for anonymous complex type.
25   * 
26   * <p>The following schema fragment specifies the expected content contained within this class.
27   * 
28   * <pre>
29   * &lt;complexType&gt;
30   *   &lt;complexContent&gt;
31   *     &lt;extension base="{http://www.opentrafficsim.org/ots}BasicRoadLayout"&gt;
32   *       &lt;attribute name="Id" use="required" type="{http://www.opentrafficsim.org/ots}IdType" /&gt;
33   *       &lt;attribute name="LinkType" use="required" type="{http://www.opentrafficsim.org/ots}string" /&gt;
34   *     &lt;/extension&gt;
35   *   &lt;/complexContent&gt;
36   * &lt;/complexType&gt;
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "")
43  @XmlRootElement(name = "RoadLayout")
44  @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
45  public class RoadLayout
46      extends BasicRoadLayout
47      implements Serializable
48  {
49  
50      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
51      private final static long serialVersionUID = 10102L;
52      @XmlAttribute(name = "Id", required = true)
53      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
54      protected String id;
55      @XmlAttribute(name = "LinkType", required = true)
56      @XmlJavaTypeAdapter(StringAdapter.class)
57      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
58      protected StringType linkType;
59  
60      /**
61       * Gets the value of the id property.
62       * 
63       * @return
64       *     possible object is
65       *     {@link String }
66       *     
67       */
68      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
69      public String getId() {
70          return id;
71      }
72  
73      /**
74       * Sets the value of the id property.
75       * 
76       * @param value
77       *     allowed object is
78       *     {@link String }
79       *     
80       */
81      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
82      public void setId(String value) {
83          this.id = value;
84      }
85  
86      /**
87       * Gets the value of the linkType property.
88       * 
89       * @return
90       *     possible object is
91       *     {@link String }
92       *     
93       */
94      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
95      public StringType getLinkType() {
96          return linkType;
97      }
98  
99      /**
100      * Sets the value of the linkType property.
101      * 
102      * @param value
103      *     allowed object is
104      *     {@link String }
105      *     
106      */
107     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
108     public void setLinkType(StringType value) {
109         this.linkType = value;
110     }
111 
112 }