PARAMETERLENGTH.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: 2024.05.19 at 12:55:27 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;
- import javax.xml.bind.annotation.XmlValue;
- import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
- import org.djunits.value.vdouble.scalar.Length;
- import org.opentrafficsim.xml.bindings.LengthAdapter;
- /**
- * <p>Java class for PARAMETERLENGTH complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="PARAMETERLENGTH">
- * <simpleContent>
- * <extension base="<http://www.opentrafficsim.org/ots>LENGTHTYPE">
- * <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </extension>
- * </simpleContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "PARAMETERLENGTH", propOrder = {
- "value"
- })
- @XmlSeeAlso({
- org.opentrafficsim.xml.generated.MODELTYPE.MODELPARAMETERS.LENGTH.class
- })
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
- public class PARAMETERLENGTH implements Serializable
- {
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
- private final static long serialVersionUID = 10102L;
- @XmlValue
- @XmlJavaTypeAdapter(LengthAdapter.class)
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
- protected Length value;
- @XmlAttribute(name = "ID")
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
- protected String id;
- /**
- * Gets the value of the value property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
- public Length getValue() {
- return value;
- }
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
- public void setValue(Length value) {
- this.value = value;
- }
- /**
- * Gets the value of the id property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
- public String getID() {
- return id;
- }
- /**
- * Sets the value of the id property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
- public void setID(String value) {
- this.id = value;
- }
- }