//
// 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 java.util.ArrayList;
import java.util.List;
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.XmlList;
import javax.xml.bind.annotation.XmlType;
/**
* Bounding shape.
*
* <p>Java-Klasse für BoundingShapeType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="BoundingShapeType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element ref="{http://www.opengis.net/gml}Envelope"/>
* <element ref="{http://www.opengis.net/gml}Null"/>
* </choice>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BoundingShapeType", propOrder = {
"envelope",
"_null"
})
public class BoundingShapeType {
@XmlElementRef(name = "Envelope", namespace = "http://www.opengis.net/gml", type = JAXBElement.class, required = false)
protected JAXBElement<? extends EnvelopeType> envelope;
@XmlList
@XmlElement(name = "Null")
protected List<String> _null;
/**
* Ruft den Wert der envelope-Eigenschaft ab.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link EnvelopeType }{@code >}
* {@link JAXBElement }{@code <}{@link EnvelopeWithTimePeriodType }{@code >}
*
*/
public JAXBElement<? extends EnvelopeType> getEnvelope() {
return envelope;
}
/**
* Legt den Wert der envelope-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link EnvelopeType }{@code >}
* {@link JAXBElement }{@code <}{@link EnvelopeWithTimePeriodType }{@code >}
*
*/
public void setEnvelope(JAXBElement<? extends EnvelopeType> value) {
this.envelope = value;
}
public boolean isSetEnvelope() {
return (this.envelope!= null);
}
/**
* Gets the value of the null property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the null property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getNull().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getNull() {
if (_null == null) {
_null = new ArrayList<String>();
}
return this._null;
}
public boolean isSetNull() {
return ((this._null!= null)&&(!this._null.isEmpty()));
}
public void unsetNull() {
this._null = null;
}
public void setNull(List<String> value) {
this._null = value;
}
}