ParameterTypeBoolean.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.adapters.XmlJavaTypeAdapter;
  15. import org.opentrafficsim.xml.bindings.BooleanAdapter;
  16. import org.opentrafficsim.xml.bindings.types.BooleanType;


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

  41.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  42.     private final static long serialVersionUID = 10102L;
  43.     @XmlAttribute(name = "Default")
  44.     @XmlJavaTypeAdapter(BooleanAdapter.class)
  45.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  46.     protected BooleanType _default;

  47.     /**
  48.      * Gets the value of the default property.
  49.      *
  50.      * @return
  51.      *     possible object is
  52.      *     {@link String }
  53.      *    
  54.      */
  55.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  56.     public BooleanType getDefault() {
  57.         return _default;
  58.     }

  59.     /**
  60.      * Sets the value of the default property.
  61.      *
  62.      * @param value
  63.      *     allowed object is
  64.      *     {@link String }
  65.      *    
  66.      */
  67.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  68.     public void setDefault(BooleanType value) {
  69.         this._default = value;
  70.     }

  71. }