// // 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.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * A dynamic feature may possess a history and/or a timestamp. * * <p>Java-Klasse für DynamicFeatureType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="DynamicFeatureType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractFeatureType"> * <group ref="{http://www.opengis.net/gml}dynamicProperties"/> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DynamicFeatureType", propOrder = { "validTime", "history", "dataSource" }) public class DynamicFeatureType extends AbstractFeatureType { protected TimePrimitivePropertyType validTime; @XmlElementRef(name = "history", namespace = "http://www.opengis.net/gml", type = JAXBElement.class, required = false) protected JAXBElement<? extends HistoryPropertyType> history; 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 history-Eigenschaft ab. * * @return * possible object is * {@link JAXBElement }{@code <}{@link HistoryPropertyType }{@code >} * {@link JAXBElement }{@code <}{@link TrackType }{@code >} * */ public JAXBElement<? extends HistoryPropertyType> getHistory() { return history; } /** * Legt den Wert der history-Eigenschaft fest. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link HistoryPropertyType }{@code >} * {@link JAXBElement }{@code <}{@link TrackType }{@code >} * */ public void setHistory(JAXBElement<? extends HistoryPropertyType> value) { this.history = value; } public boolean isSetHistory() { return (this.history!= 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); } }