
eu.datex2.schema._2._2_0.NonOrderedLocations 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for NonOrderedLocations complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NonOrderedLocations">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}GroupOfLocations">
* <sequence>
* <element name="nonOrderedLocationsExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NonOrderedLocations", propOrder = {
"nonOrderedLocationsExtension"
})
@XmlSeeAlso({
NonOrderedLocationGroupByList.class,
NonOrderedLocationGroupByReference.class
})
public abstract class NonOrderedLocations
extends GroupOfLocations
{
protected ExtensionType nonOrderedLocationsExtension;
/**
* Gets the value of the nonOrderedLocationsExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getNonOrderedLocationsExtension() {
return nonOrderedLocationsExtension;
}
/**
* Sets the value of the nonOrderedLocationsExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setNonOrderedLocationsExtension(ExtensionType value) {
this.nonOrderedLocationsExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy