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