// // 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * A timeslice encapsulates the time-varying properties of a dynamic feature--it * must be extended to represent a timestamped projection of a feature. The dataSource * property describes how the temporal data was acquired. * * <p>Java-Klasse für AbstractTimeSliceType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractTimeSliceType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractGMLType"> * <sequence> * <element ref="{http://www.opengis.net/gml}validTime"/> * <element ref="{http://www.opengis.net/gml}dataSource" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractTimeSliceType", propOrder = { "validTime", "dataSource" }) @XmlSeeAlso({ MovingObjectStatusType.class }) public abstract class AbstractTimeSliceType extends AbstractGMLType { @XmlElement(required = true) protected TimePrimitivePropertyType validTime; protected StringOrRefType dataSource; /** * Ruft den Wert der validTime-Eigenschaft ab. * * @return * possible object is * {@link TimePrimitivePropertyType } * */ public TimePrimitivePropertyType getValidTime() { return validTime; } /** * Legt den Wert der validTime-Eigenschaft fest. * * @param value * allowed object is * {@link TimePrimitivePropertyType } * */ public void setValidTime(TimePrimitivePropertyType value) { this.validTime = value; } public boolean isSetValidTime() { return (this.validTime!= null); } /** * Ruft den Wert der dataSource-Eigenschaft ab. * * @return * possible object is * {@link StringOrRefType } * */ public StringOrRefType getDataSource() { return dataSource; } /** * Legt den Wert der dataSource-Eigenschaft fest. * * @param value * allowed object is * {@link StringOrRefType } * */ public void setDataSource(StringOrRefType value) { this.dataSource = value; } public boolean isSetDataSource() { return (this.dataSource!= null); } }