CseStripe.java
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7
// 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.08.29 at 06:50:16 PM 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.opentrafficsim.xml.bindings.LengthAdapter;
import org.opentrafficsim.xml.bindings.PositiveLengthAdapter;
import org.opentrafficsim.xml.bindings.StripeTypeAdapter;
import org.opentrafficsim.xml.bindings.types.StripeType;
/**
* <p>Java class for CseStripe complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="CseStripe">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice minOccurs="0">
* <element name="CenterOffset" type="{http://www.opentrafficsim.org/ots}LengthType"/>
* <sequence>
* <element name="CenterOffsetStart" type="{http://www.opentrafficsim.org/ots}LengthType"/>
* <element name="CenterOffsetEnd" type="{http://www.opentrafficsim.org/ots}LengthType"/>
* </sequence>
* </choice>
* <element name="DrawingWidth" type="{http://www.opentrafficsim.org/ots}PositiveLengthType" minOccurs="0"/>
* </sequence>
* <attribute name="Id" type="{http://www.opentrafficsim.org/ots}IdType" />
* <attribute name="Type" use="required" type="{http://www.opentrafficsim.org/ots}StripeType" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CseStripe", propOrder = {
"centerOffset",
"centerOffsetStart",
"centerOffsetEnd",
"drawingWidth"
})
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public class CseStripe implements Serializable
{
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
private final static long serialVersionUID = 10102L;
@XmlElement(name = "CenterOffset", type = String.class)
@XmlJavaTypeAdapter(LengthAdapter.class)
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
protected org.opentrafficsim.xml.bindings.types.LengthType centerOffset;
@XmlElement(name = "CenterOffsetStart", type = String.class)
@XmlJavaTypeAdapter(LengthAdapter.class)
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
protected org.opentrafficsim.xml.bindings.types.LengthType centerOffsetStart;
@XmlElement(name = "CenterOffsetEnd", type = String.class)
@XmlJavaTypeAdapter(LengthAdapter.class)
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
protected org.opentrafficsim.xml.bindings.types.LengthType centerOffsetEnd;
@XmlElement(name = "DrawingWidth", type = String.class)
@XmlJavaTypeAdapter(PositiveLengthAdapter.class)
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
protected org.opentrafficsim.xml.bindings.types.LengthType drawingWidth;
@XmlAttribute(name = "Id")
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
protected String id;
@XmlAttribute(name = "Type", required = true)
@XmlJavaTypeAdapter(StripeTypeAdapter.class)
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
protected StripeType type;
/**
* Gets the value of the centerOffset property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public org.opentrafficsim.xml.bindings.types.LengthType getCenterOffset() {
return centerOffset;
}
/**
* Sets the value of the centerOffset property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public void setCenterOffset(org.opentrafficsim.xml.bindings.types.LengthType value) {
this.centerOffset = value;
}
/**
* Gets the value of the centerOffsetStart property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public org.opentrafficsim.xml.bindings.types.LengthType getCenterOffsetStart() {
return centerOffsetStart;
}
/**
* Sets the value of the centerOffsetStart property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public void setCenterOffsetStart(org.opentrafficsim.xml.bindings.types.LengthType value) {
this.centerOffsetStart = value;
}
/**
* Gets the value of the centerOffsetEnd property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public org.opentrafficsim.xml.bindings.types.LengthType getCenterOffsetEnd() {
return centerOffsetEnd;
}
/**
* Sets the value of the centerOffsetEnd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public void setCenterOffsetEnd(org.opentrafficsim.xml.bindings.types.LengthType value) {
this.centerOffsetEnd = value;
}
/**
* Gets the value of the drawingWidth property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public org.opentrafficsim.xml.bindings.types.LengthType getDrawingWidth() {
return drawingWidth;
}
/**
* Sets the value of the drawingWidth property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public void setDrawingWidth(org.opentrafficsim.xml.bindings.types.LengthType value) {
this.drawingWidth = 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.7", date = "2024-08-29T18:50:16+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.7", date = "2024-08-29T18:50:16+02:00")
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public StripeType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public void setType(StripeType value) {
this.type = value;
}
}