
eu.datex2.schema._2._2_0.TpegPointLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datex2-api Show documentation
Show all versions of datex2-api Show documentation
DATEX II API for Java, allows to create DATEX II suppliers and clients.
The newest version!
package eu.datex2.schema._2._2_0;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TpegPointLocation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TpegPointLocation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tpegDirection" type="{http://datex2.eu/schema/2/2_0}DirectionEnum"/>
* <element name="tpegPointLocationExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TpegPointLocation", propOrder = {
"tpegDirection",
"tpegPointLocationExtension"
})
@XmlSeeAlso({
TpegSimplePoint.class,
TpegFramedPoint.class
})
public abstract class TpegPointLocation {
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected DirectionEnum tpegDirection;
protected ExtensionType tpegPointLocationExtension;
/**
* Gets the value of the tpegDirection property.
*
* @return
* possible object is
* {@link DirectionEnum }
*
*/
public DirectionEnum getTpegDirection() {
return tpegDirection;
}
/**
* Sets the value of the tpegDirection property.
*
* @param value
* allowed object is
* {@link DirectionEnum }
*
*/
public void setTpegDirection(DirectionEnum value) {
this.tpegDirection = value;
}
/**
* Gets the value of the tpegPointLocationExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getTpegPointLocationExtension() {
return tpegPointLocationExtension;
}
/**
* Sets the value of the tpegPointLocationExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setTpegPointLocationExtension(ExtensionType value) {
this.tpegPointLocationExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy