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: 2020.11.01 at 07:11:19 PM CET 
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.XmlValue;
18  import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
19  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20  
21  
22  /**
23   * <p>Java class for TRAFCODCOORDINATESTYPE complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="TRAFCODCOORDINATESTYPE"&gt;
29   *   &lt;simpleContent&gt;
30   *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;string"&gt;
31   *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}space default="preserve""/&gt;
32   *     &lt;/extension&gt;
33   *   &lt;/simpleContent&gt;
34   * &lt;/complexType&gt;
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "TRAFCODCOORDINATESTYPE", propOrder = {
41      "value"
42  })
43  @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
44  public class TRAFCODCOORDINATESTYPE
45      implements Serializable
46  {
47  
48      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
49      private final static long serialVersionUID = 10102L;
50      @XmlValue
51      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
52      protected String value;
53      @XmlAttribute(name = "space", namespace = "http://www.w3.org/XML/1998/namespace")
54      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
55      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
56      protected String space;
57  
58      /**
59       * Gets the value of the value property.
60       * 
61       * @return
62       *     possible object is
63       *     {@link String }
64       *     
65       */
66      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
67      public String getValue() {
68          return value;
69      }
70  
71      /**
72       * Sets the value of the value property.
73       * 
74       * @param value
75       *     allowed object is
76       *     {@link String }
77       *     
78       */
79      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
80      public void setValue(String value) {
81          this.value = value;
82      }
83  
84      /**
85       * Gets the value of the space property.
86       * 
87       * @return
88       *     possible object is
89       *     {@link String }
90       *     
91       */
92      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
93      public String getSpace() {
94          if (space == null) {
95              return "preserve";
96          } else {
97              return space;
98          }
99      }
100 
101     /**
102      * Sets the value of the space property.
103      * 
104      * @param value
105      *     allowed object is
106      *     {@link String }
107      *     
108      */
109     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
110     public void setSpace(String value) {
111         this.space = value;
112     }
113 
114 }