// // 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * This is the abstract root type of the geometric primitives. A geometric primitive is a geometric object that is not * decomposed further into other primitives in the system. All primitives are oriented in the direction implied by the sequence of their * coordinate tuples. * * <p>Java-Klasse für AbstractGeometricPrimitiveType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractGeometricPrimitiveType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractGeometryType"> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractGeometricPrimitiveType") @XmlSeeAlso({ PointType.class, AbstractSolidType.class, AbstractCurveType.class, AbstractSurfaceType.class }) public abstract class AbstractGeometricPrimitiveType extends AbstractGeometryType { }