FREQUENCYDISTTYPE.java
- //
- // This file was generated by the Eclipse Implementation of JAXB, v2.3.6
- // See https://eclipse-ee4j.github.io/jaxb-ri
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2022.09.04 at 02:31:11 AM CEST
- //
- package org.opentrafficsim.xml.generated;
- import java.io.Serializable;
- import javax.annotation.Generated;
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlAttribute;
- import javax.xml.bind.annotation.XmlSeeAlso;
- import javax.xml.bind.annotation.XmlType;
- /**
- * <p>Java class for FREQUENCYDISTTYPE complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="FREQUENCYDISTTYPE">
- * <complexContent>
- * <extension base="{http://www.opentrafficsim.org/ots}CONTDISTTYPE">
- * <attribute name="FREQUENCYUNIT" type="{http://www.opentrafficsim.org/ots}FREQUENCYUNITTYPE" />
- * </extension>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "FREQUENCYDISTTYPE")
- @XmlSeeAlso({
- PARAMETERFREQUENCYDIST.class
- })
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
- public class FREQUENCYDISTTYPE
- extends CONTDISTTYPE
- implements Serializable
- {
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
- private final static long serialVersionUID = 10102L;
- @XmlAttribute(name = "FREQUENCYUNIT")
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
- protected String frequencyunit;
- /**
- * Gets the value of the frequencyunit property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
- public String getFREQUENCYUNIT() {
- return frequencyunit;
- }
- /**
- * Sets the value of the frequencyunit property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2022-09-04T02:31:11+02:00")
- public void setFREQUENCYUNIT(String value) {
- this.frequencyunit = value;
- }
- }