FREQUENCYDISTTYPE.java

  1. //
  2. // This file was generated by the Eclipse Implementation of JAXB, v2.3.6
  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: 2022.09.04 at 02:31:11 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.XmlSeeAlso;
  14. import javax.xml.bind.annotation.XmlType;


  15. /**
  16.  * <p>Java class for FREQUENCYDISTTYPE complex type.
  17.  *
  18.  * <p>The following schema fragment specifies the expected content contained within this class.
  19.  *
  20.  * <pre>
  21.  * &lt;complexType name="FREQUENCYDISTTYPE"&gt;
  22.  *   &lt;complexContent&gt;
  23.  *     &lt;extension base="{http://www.opentrafficsim.org/ots}CONTDISTTYPE"&gt;
  24.  *       &lt;attribute name="FREQUENCYUNIT" type="{http://www.opentrafficsim.org/ots}FREQUENCYUNITTYPE" /&gt;
  25.  *     &lt;/extension&gt;
  26.  *   &lt;/complexContent&gt;
  27.  * &lt;/complexType&gt;
  28.  * </pre>
  29.  *
  30.  *
  31.  */
  32. @XmlAccessorType(XmlAccessType.FIELD)
  33. @XmlType(name = "FREQUENCYDISTTYPE")
  34. @XmlSeeAlso({
  35.     PARAMETERFREQUENCYDIST.class
  36. })
  37. @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  38. public class FREQUENCYDISTTYPE
  39.     extends CONTDISTTYPE
  40.     implements Serializable
  41. {

  42.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  43.     private final static long serialVersionUID = 10102L;
  44.     @XmlAttribute(name = "FREQUENCYUNIT")
  45.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
  46.     protected String frequencyunit;

  47.     /**
  48.      * Gets the value of the frequencyunit 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.6", date = "2022-09-04T02:31:11+02:00")
  56.     public String getFREQUENCYUNIT() {
  57.         return frequencyunit;
  58.     }

  59.     /**
  60.      * Sets the value of the frequencyunit 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.6", date = "2022-09-04T02:31:11+02:00")
  68.     public void setFREQUENCYUNIT(String value) {
  69.         this.frequencyunit = value;
  70.     }

  71. }