// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.gml; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * A Point is defined by a single coordinate tuple. * * <p>Java-Klasse für PointType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="PointType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractGeometricPrimitiveType"> * <sequence> * <choice> * <element ref="{http://www.opengis.net/gml}pos"/> * <element ref="{http://www.opengis.net/gml}coordinates"/> * <element ref="{http://www.opengis.net/gml}coord"/> * </choice> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PointType", propOrder = { "pos", "coordinates", "coord" }) public class PointType extends AbstractGeometricPrimitiveType { protected DirectPositionType pos; protected CoordinatesType coordinates; protected CoordType coord; /** * Ruft den Wert der pos-Eigenschaft ab. * * @return * possible object is * {@link DirectPositionType } * */ public DirectPositionType getPos() { return pos; } /** * Legt den Wert der pos-Eigenschaft fest. * * @param value * allowed object is * {@link DirectPositionType } * */ public void setPos(DirectPositionType value) { this.pos = value; } public boolean isSetPos() { return (this.pos!= null); } /** * Deprecated with GML version 3.1.0 for coordinates with ordinate values that are numbers. Use "pos" * instead. The "coordinates" element shall only be used for coordinates with ordinates that require a string * representation, e.g. DMS representations. * * @return * possible object is * {@link CoordinatesType } * */ public CoordinatesType getCoordinates() { return coordinates; } /** * Legt den Wert der coordinates-Eigenschaft fest. * * @param value * allowed object is * {@link CoordinatesType } * */ public void setCoordinates(CoordinatesType value) { this.coordinates = value; } public boolean isSetCoordinates() { return (this.coordinates!= null); } /** * Deprecated with GML version 3.0. Use "pos" instead. The "coord" element is included for * backwards compatibility with GML 2. * * @return * possible object is * {@link CoordType } * */ public CoordType getCoord() { return coord; } /** * Legt den Wert der coord-Eigenschaft fest. * * @param value * allowed object is * {@link CoordType } * */ public void setCoord(CoordType value) { this.coord = value; } public boolean isSetCoord() { return (this.coord!= null); } }