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.xsd;
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   * &lt;complexType>
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;attribute name="NAME" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
28   *       &lt;attribute name="GTUTYPE" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
29   *       &lt;attribute name="LENGTH" use="required" type="{http://www.opentrafficsim.org/ots}LENGTHDISTTYPE" />
30   *       &lt;attribute name="WIDTH" use="required" type="{http://www.opentrafficsim.org/ots}LENGTHDISTTYPE" />
31   *       &lt;attribute name="MAXSPEED" use="required" type="{http://www.opentrafficsim.org/ots}SPEEDDISTTYPE" />
32   *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/>
33   *     &lt;/restriction>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "")
40  @XmlRootElement(name = "GTUTYPE")
41  public class GTUTYPE
42  {
43  
44      @XmlAttribute(name = "NAME", required = true)
45      protected String name;
46  
47      @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
48      @XmlSchemaType(name = "anyURI")
49      protected String base;
50  
51      /**
52       * Gets the value of the name property.
53       * @return possible object is {@link String }
54       */
55      public String getNAME()
56      {
57          return name;
58      }
59  
60      /**
61       * Sets the value of the name property.
62       * @param value String; allowed object is {@link String }
63       */
64      public void setNAME(String value)
65      {
66          this.name = value;
67      }
68  
69      /**
70       * Gets the value of the base property.
71       * @return possible object is {@link String }
72       */
73      public String getBase()
74      {
75          return base;
76      }
77  
78      /**
79       * Sets the value of the base property.
80       * @param value String; allowed object is {@link String }
81       */
82      public void setBase(String value)
83      {
84          this.base = value;
85      }
86  
87  }