
eu.datex2.schema._2._2_0.AlertCMethod4Point 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.XmlType;
/**
* Java class for AlertCMethod4Point complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AlertCMethod4Point">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}AlertCPoint">
* <sequence>
* <element name="alertCDirection" type="{http://datex2.eu/schema/2/2_0}AlertCDirection"/>
* <element name="alertCMethod4PrimaryPointLocation" type="{http://datex2.eu/schema/2/2_0}AlertCMethod4PrimaryPointLocation"/>
* <element name="alertCMethod4PointExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AlertCMethod4Point", propOrder = {
"alertCDirection",
"alertCMethod4PrimaryPointLocation",
"alertCMethod4PointExtension"
})
public class AlertCMethod4Point
extends AlertCPoint
{
@XmlElement(required = true)
protected AlertCDirection alertCDirection;
@XmlElement(required = true)
protected AlertCMethod4PrimaryPointLocation alertCMethod4PrimaryPointLocation;
protected ExtensionType alertCMethod4PointExtension;
/**
* Gets the value of the alertCDirection property.
*
* @return
* possible object is
* {@link AlertCDirection }
*
*/
public AlertCDirection getAlertCDirection() {
return alertCDirection;
}
/**
* Sets the value of the alertCDirection property.
*
* @param value
* allowed object is
* {@link AlertCDirection }
*
*/
public void setAlertCDirection(AlertCDirection value) {
this.alertCDirection = value;
}
/**
* Gets the value of the alertCMethod4PrimaryPointLocation property.
*
* @return
* possible object is
* {@link AlertCMethod4PrimaryPointLocation }
*
*/
public AlertCMethod4PrimaryPointLocation getAlertCMethod4PrimaryPointLocation() {
return alertCMethod4PrimaryPointLocation;
}
/**
* Sets the value of the alertCMethod4PrimaryPointLocation property.
*
* @param value
* allowed object is
* {@link AlertCMethod4PrimaryPointLocation }
*
*/
public void setAlertCMethod4PrimaryPointLocation(AlertCMethod4PrimaryPointLocation value) {
this.alertCMethod4PrimaryPointLocation = value;
}
/**
* Gets the value of the alertCMethod4PointExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getAlertCMethod4PointExtension() {
return alertCMethod4PointExtension;
}
/**
* Sets the value of the alertCMethod4PointExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setAlertCMethod4PointExtension(ExtensionType value) {
this.alertCMethod4PointExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy