// // 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 2D coordinate reference system used to approximate the shape of the earth on a planar surface, but in such a way that the distortion that is inherent to the approximation is carefully controlled and known. Distortion correction is commonly applied to calculated bearings and distances to produce values that are a close match to actual field values. * * <p>Java-Klasse für ProjectedCRSType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="ProjectedCRSType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractGeneralDerivedCRSType"> * <sequence> * <element ref="{http://www.opengis.net/gml}usesCartesianCS"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProjectedCRSType", propOrder = { "usesCartesianCS" }) public class ProjectedCRSType extends AbstractGeneralDerivedCRSType { @XmlElement(required = true) protected CartesianCSRefType usesCartesianCS; /** * 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); } }