// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * A 3D coordinate reference system with the origin at the approximate centre of mass of the earth. A geocentric CRS deals with the earth's curvature by taking a 3D spatial view, which obviates the need to model the earth's curvature. * * <p>Java-Klasse für GeocentricCRSType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="GeocentricCRSType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractReferenceSystemType"> * <sequence> * <choice> * <element ref="{http://www.opengis.net/gml}usesCartesianCS"/> * <element ref="{http://www.opengis.net/gml}usesSphericalCS"/> * </choice> * <element ref="{http://www.opengis.net/gml}usesGeodeticDatum"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GeocentricCRSType", propOrder = { "usesCartesianCS", "usesSphericalCS", "usesGeodeticDatum" }) public class GeocentricCRSType extends AbstractReferenceSystemType { protected CartesianCSRefType usesCartesianCS; protected SphericalCSRefType usesSphericalCS; @XmlElement(required = true) protected GeodeticDatumRefType usesGeodeticDatum; /** * Ruft den Wert der usesCartesianCS-Eigenschaft ab. * * @return * possible object is * {@link CartesianCSRefType } * */ public CartesianCSRefType getUsesCartesianCS() { return usesCartesianCS; } /** * Legt den Wert der usesCartesianCS-Eigenschaft fest. * * @param value * allowed object is * {@link CartesianCSRefType } * */ public void setUsesCartesianCS(CartesianCSRefType value) { this.usesCartesianCS = value; } public boolean isSetUsesCartesianCS() { return (this.usesCartesianCS!= null); } /** * Ruft den Wert der usesSphericalCS-Eigenschaft ab. * * @return * possible object is * {@link SphericalCSRefType } * */ public SphericalCSRefType getUsesSphericalCS() { return usesSphericalCS; } /** * Legt den Wert der usesSphericalCS-Eigenschaft fest. * * @param value * allowed object is * {@link SphericalCSRefType } * */ public void setUsesSphericalCS(SphericalCSRefType value) { this.usesSphericalCS = value; } public boolean isSetUsesSphericalCS() { return (this.usesSphericalCS!= null); } /** * Ruft den Wert der usesGeodeticDatum-Eigenschaft ab. * * @return * possible object is * {@link GeodeticDatumRefType } * */ public GeodeticDatumRefType getUsesGeodeticDatum() { return usesGeodeticDatum; } /** * Legt den Wert der usesGeodeticDatum-Eigenschaft fest. * * @param value * allowed object is * {@link GeodeticDatumRefType } * */ public void setUsesGeodeticDatum(GeodeticDatumRefType value) { this.usesGeodeticDatum = value; } public boolean isSetUsesGeodeticDatum() { return (this.usesGeodeticDatum!= null); } }