View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4   // Any modifications to this file will be lost upon recompilation of the source schema.
5   // Generated on: 2016.11.03 at 01:02:34 PM CET
6   //
7   
8   package org.opentrafficsim.road.network.factory.vissim;
9   
10  import javax.xml.bind.annotation.XmlAccessType;
11  import javax.xml.bind.annotation.XmlAccessorType;
12  import javax.xml.bind.annotation.XmlAttribute;
13  import javax.xml.bind.annotation.XmlRootElement;
14  import javax.xml.bind.annotation.XmlSchemaType;
15  import javax.xml.bind.annotation.XmlType;
16  
17  /**
18   * <p>
19   * Java class for anonymous complex type.
20   * <p>
21   * The following schema fragment specifies the expected content contained within this class.
22   *
23   * <pre>
24   * {@code
25    <xsd:element name="GTUTYPE">
26      <xsd:complexType>
27        <xsd:attribute name="NAME" type="xsd:string" use="required" />
28        <xsd:attribute ref="xml:base" />
29      </xsd:complexType>
30    </xsd:element>
31   * }
32   * </pre>
33   */
34  @XmlAccessorType(XmlAccessType.FIELD)
35  @XmlType(name = "")
36  @XmlRootElement(name = "GTUTYPE")
37  public class GTUTYPE
38  {
39  
40      @XmlAttribute(name = "NAME", required = true)
41      protected String name;
42  
43      @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
44      @XmlSchemaType(name = "anyURI")
45      protected String base;
46  
47      /**
48       * Gets the value of the name property.
49       * @return possible object is {@link String }
50       */
51      public String getNAME()
52      {
53          return name;
54      }
55  
56      /**
57       * Sets the value of the name property.
58       * @param value String; allowed object is {@link String }
59       */
60      public void setNAME(String value)
61      {
62          this.name = value;
63      }
64  
65      /**
66       * Gets the value of the base property.
67       * @return possible object is {@link String }
68       */
69      public String getBase()
70      {
71          return base;
72      }
73  
74      /**
75       * Sets the value of the base property.
76       * @param value String; allowed object is {@link String }
77       */
78      public void setBase(String value)
79      {
80          this.base = value;
81      }
82  
83  }