// // 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.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * The abstract supertype for temporal geometric primitives. * A temporal geometry must be associated with a temporal reference system via URI. * The Gregorian calendar with UTC is the default reference system, following ISO * 8601. Other reference systems in common use include the GPS calendar and the * Julian calendar. * * <p>Java-Klasse für AbstractTimeGeometricPrimitiveType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractTimeGeometricPrimitiveType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractTimePrimitiveType"> * <attribute name="frame" type="{http://www.w3.org/2001/XMLSchema}anyURI" default="#ISO-8601" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractTimeGeometricPrimitiveType") @XmlSeeAlso({ TimeInstantType.class, TimePeriodType.class }) public abstract class AbstractTimeGeometricPrimitiveType extends AbstractTimePrimitiveType { @XmlAttribute(name = "frame") @XmlSchemaType(name = "anyURI") protected String frame; /** * Ruft den Wert der frame-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getFrame() { if (frame == null) { return "#ISO-8601"; } else { return frame; } } /** * Legt den Wert der frame-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setFrame(String value) { this.frame = value; } public boolean isSetFrame() { return (this.frame!= null); } }