RandomStreamSource.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.XmlElement;
  13. import javax.xml.bind.annotation.XmlType;
  14. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  15. import org.opentrafficsim.xml.bindings.StringAdapter;
  16. import org.opentrafficsim.xml.bindings.types.StringType;


  17. /**
  18.  * <p>Java class for RandomStreamSource complex type.
  19.  *
  20.  * <p>The following schema fragment specifies the expected content contained within this class.
  21.  *
  22.  * <pre>
  23.  * &lt;complexType name="RandomStreamSource"&gt;
  24.  *   &lt;complexContent&gt;
  25.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  26.  *       &lt;choice&gt;
  27.  *         &lt;element name="Default" type="{http://www.opentrafficsim.org/ots}EmptyType"/&gt;
  28.  *         &lt;element name="Generation" type="{http://www.opentrafficsim.org/ots}EmptyType"/&gt;
  29.  *         &lt;element name="Defined" type="{http://www.opentrafficsim.org/ots}string"/&gt;
  30.  *       &lt;/choice&gt;
  31.  *     &lt;/restriction&gt;
  32.  *   &lt;/complexContent&gt;
  33.  * &lt;/complexType&gt;
  34.  * </pre>
  35.  *
  36.  *
  37.  */
  38. @XmlAccessorType(XmlAccessType.FIELD)
  39. @XmlType(name = "RandomStreamSource", propOrder = {
  40.     "_default",
  41.     "generation",
  42.     "defined"
  43. })
  44. @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  45. public class RandomStreamSource
  46.     implements Serializable
  47. {

  48.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  49.     private final static long serialVersionUID = 10102L;
  50.     @XmlElement(name = "Default")
  51.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  52.     protected EmptyType _default;
  53.     @XmlElement(name = "Generation")
  54.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  55.     protected EmptyType generation;
  56.     @XmlElement(name = "Defined", type = String.class)
  57.     @XmlJavaTypeAdapter(StringAdapter.class)
  58.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  59.     protected StringType defined;

  60.     /**
  61.      * Gets the value of the default property.
  62.      *
  63.      * @return
  64.      *     possible object is
  65.      *     {@link EmptyType }
  66.      *    
  67.      */
  68.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  69.     public EmptyType getDefault() {
  70.         return _default;
  71.     }

  72.     /**
  73.      * Sets the value of the default property.
  74.      *
  75.      * @param value
  76.      *     allowed object is
  77.      *     {@link EmptyType }
  78.      *    
  79.      */
  80.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  81.     public void setDefault(EmptyType value) {
  82.         this._default = value;
  83.     }

  84.     /**
  85.      * Gets the value of the generation property.
  86.      *
  87.      * @return
  88.      *     possible object is
  89.      *     {@link EmptyType }
  90.      *    
  91.      */
  92.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  93.     public EmptyType getGeneration() {
  94.         return generation;
  95.     }

  96.     /**
  97.      * Sets the value of the generation property.
  98.      *
  99.      * @param value
  100.      *     allowed object is
  101.      *     {@link EmptyType }
  102.      *    
  103.      */
  104.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  105.     public void setGeneration(EmptyType value) {
  106.         this.generation = value;
  107.     }

  108.     /**
  109.      * Gets the value of the defined property.
  110.      *
  111.      * @return
  112.      *     possible object is
  113.      *     {@link String }
  114.      *    
  115.      */
  116.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  117.     public StringType getDefined() {
  118.         return defined;
  119.     }

  120.     /**
  121.      * Sets the value of the defined property.
  122.      *
  123.      * @param value
  124.      *     allowed object is
  125.      *     {@link String }
  126.      *    
  127.      */
  128.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  129.     public void setDefined(StringType value) {
  130.         this.defined = value;
  131.     }

  132. }