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.03.16 at 06:21:55 PM CET 
6   //
7   
8   
9   package org.opentrafficsim.xml.generated;
10  
11  import javax.annotation.Generated;
12  import javax.xml.bind.annotation.XmlAccessType;
13  import javax.xml.bind.annotation.XmlAccessorType;
14  import javax.xml.bind.annotation.XmlAttribute;
15  import javax.xml.bind.annotation.XmlType;
16  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
17  import org.opentrafficsim.xml.bindings.StripeTypeAdapter;
18  import org.opentrafficsim.xml.bindings.types.StripeType;
19  
20  
21  /**
22   * <p>Java class for CSESTRIPE complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType name="CSESTRIPE"&gt;
28   *   &lt;complexContent&gt;
29   *     &lt;extension base="{http://www.opentrafficsim.org/ots}CROSSSECTIONELEMENT"&gt;
30   *       &lt;attribute name="TYPE" use="required" type="{http://www.opentrafficsim.org/ots}STRIPETYPE" /&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 = "CSESTRIPE")
40  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
41  public class CSESTRIPE
42      extends CROSSSECTIONELEMENT
43  {
44  
45      @XmlAttribute(name = "TYPE", required = true)
46      @XmlJavaTypeAdapter(StripeTypeAdapter.class)
47      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
48      protected StripeType type;
49  
50      /**
51       * Gets the value of the type property.
52       * 
53       * @return
54       *     possible object is
55       *     {@link String }
56       *     
57       */
58      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
59      public StripeType getTYPE() {
60          return type;
61      }
62  
63      /**
64       * Sets the value of the type property.
65       * 
66       * @param value
67       *     allowed object is
68       *     {@link String }
69       *     
70       */
71      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
72      public void setTYPE(StripeType value) {
73          this.type = value;
74      }
75  
76  }