LevelTimeType.java

  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.05.19 at 03:25:58 AM CEST
  6. //


  7. package org.opentrafficsim.xml.generated;

  8. import java.io.Serializable;
  9. import javax.annotation.Generated;
  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.XmlType;
  14. import javax.xml.bind.annotation.XmlValue;
  15. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  16. import org.opentrafficsim.xml.bindings.TimeAdapter;
  17. import org.opentrafficsim.xml.bindings.types.TimeType;


  18. /**
  19.  * <p>Java class for LevelTimeType complex type.
  20.  *
  21.  * <p>The following schema fragment specifies the expected content contained within this class.
  22.  *
  23.  * <pre>
  24.  * &lt;complexType name="LevelTimeType"&gt;
  25.  *   &lt;simpleContent&gt;
  26.  *     &lt;extension base="&lt;http://www.opentrafficsim.org/ots&gt;LevelType"&gt;
  27.  *       &lt;attribute name="Time" type="{http://www.opentrafficsim.org/ots}TimeType" /&gt;
  28.  *     &lt;/extension&gt;
  29.  *   &lt;/simpleContent&gt;
  30.  * &lt;/complexType&gt;
  31.  * </pre>
  32.  *
  33.  *
  34.  */
  35. @XmlAccessorType(XmlAccessType.FIELD)
  36. @XmlType(name = "LevelTimeType", propOrder = {
  37.     "value"
  38. })
  39. @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  40. public class LevelTimeType
  41.     implements Serializable
  42. {

  43.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  44.     private final static long serialVersionUID = 10102L;
  45.     @XmlValue
  46.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  47.     protected String value;
  48.     @XmlAttribute(name = "Time")
  49.     @XmlJavaTypeAdapter(TimeAdapter.class)
  50.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  51.     protected TimeType time;

  52.     /**
  53.      * Gets the value of the value property.
  54.      *
  55.      * @return
  56.      *     possible object is
  57.      *     {@link String }
  58.      *    
  59.      */
  60.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  61.     public String getValue() {
  62.         return value;
  63.     }

  64.     /**
  65.      * Sets the value of the value property.
  66.      *
  67.      * @param value
  68.      *     allowed object is
  69.      *     {@link String }
  70.      *    
  71.      */
  72.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  73.     public void setValue(String value) {
  74.         this.value = value;
  75.     }

  76.     /**
  77.      * Gets the value of the time property.
  78.      *
  79.      * @return
  80.      *     possible object is
  81.      *     {@link String }
  82.      *    
  83.      */
  84.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  85.     public TimeType getTime() {
  86.         return time;
  87.     }

  88.     /**
  89.      * Sets the value of the time property.
  90.      *
  91.      * @param value
  92.      *     allowed object is
  93.      *     {@link String }
  94.      *    
  95.      */
  96.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  97.     public void setTime(TimeType value) {
  98.         this.time = value;
  99.     }

  100. }