//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java-Klasse für ObservationType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="ObservationType">
* <complexContent>
* <extension base="{http://www.opengis.net/gml}AbstractFeatureType">
* <sequence>
* <element ref="{http://www.opengis.net/gml}validTime"/>
* <element ref="{http://www.opengis.net/gml}using" minOccurs="0"/>
* <element ref="{http://www.opengis.net/gml}target" minOccurs="0"/>
* <element ref="{http://www.opengis.net/gml}resultOf"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ObservationType", propOrder = {
"validTime",
"using",
"target",
"resultOf"
})
@XmlSeeAlso({
DirectedObservationType.class
})
public class ObservationType
extends AbstractFeatureType
{
@XmlElement(required = true)
protected TimePrimitivePropertyType validTime;
protected FeaturePropertyType using;
@XmlElementRef(name = "target", namespace = "http://www.opengis.net/gml", type = JAXBElement.class, required = false)
protected JAXBElement<TargetPropertyType> target;
@XmlElement(required = true)
protected AssociationType resultOf;
/**
* 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 using-Eigenschaft ab.
*
* @return
* possible object is
* {@link FeaturePropertyType }
*
*/
public FeaturePropertyType getUsing() {
return using;
}
/**
* Legt den Wert der using-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link FeaturePropertyType }
*
*/
public void setUsing(FeaturePropertyType value) {
this.using = value;
}
public boolean isSetUsing() {
return (this.using!= null);
}
/**
* Ruft den Wert der target-Eigenschaft ab.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link TargetPropertyType }{@code >}
* {@link JAXBElement }{@code <}{@link TargetPropertyType }{@code >}
*
*/
public JAXBElement<TargetPropertyType> getTarget() {
return target;
}
/**
* Legt den Wert der target-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link TargetPropertyType }{@code >}
* {@link JAXBElement }{@code <}{@link TargetPropertyType }{@code >}
*
*/
public void setTarget(JAXBElement<TargetPropertyType> value) {
this.target = value;
}
public boolean isSetTarget() {
return (this.target!= null);
}
/**
* Ruft den Wert der resultOf-Eigenschaft ab.
*
* @return
* possible object is
* {@link AssociationType }
*
*/
public AssociationType getResultOf() {
return resultOf;
}
/**
* Legt den Wert der resultOf-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link AssociationType }
*
*/
public void setResultOf(AssociationType value) {
this.resultOf = value;
}
public boolean isSetResultOf() {
return (this.resultOf!= null);
}
}