// // 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.citygml.relief._1; 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.XmlType; /** * Type describing the raster component of a relief feature. As subclass of _CityObject, a RasterRelief * inherits all attributes and relations, in particular an id, names, external references, and generalization relations. * * * <p>Java-Klasse für RasterReliefType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="RasterReliefType"> * <complexContent> * <extension base="{http://www.opengis.net/citygml/relief/1.0}AbstractReliefComponentType"> * <sequence> * <element name="grid" type="{http://www.opengis.net/citygml/relief/1.0}gridPropertyType"/> * <element ref="{http://www.opengis.net/citygml/relief/1.0}_GenericApplicationPropertyOfRasterRelief" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RasterReliefType", propOrder = { "grid", "_GenericApplicationPropertyOfRasterRelief" }) public class RasterReliefType extends AbstractReliefComponentType { @XmlElement(required = true) protected GridPropertyType grid; @XmlElementRef(name = "_GenericApplicationPropertyOfRasterRelief", namespace = "http://www.opengis.net/citygml/relief/1.0", type = JAXBElement.class, required = false) protected List<JAXBElement<Object>> _GenericApplicationPropertyOfRasterRelief; /** * Ruft den Wert der grid-Eigenschaft ab. * * @return * possible object is * {@link GridPropertyType } * */ public GridPropertyType getGrid() { return grid; } /** * Legt den Wert der grid-Eigenschaft fest. * * @param value * allowed object is * {@link GridPropertyType } * */ public void setGrid(GridPropertyType value) { this.grid = value; } public boolean isSetGrid() { return (this.grid!= null); } /** * Gets the value of the genericApplicationPropertyOfRasterRelief 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 genericApplicationPropertyOfRasterRelief property. * * <p> * For example, to add a new item, do as follows: * <pre> * get_GenericApplicationPropertyOfRasterRelief().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link Object }{@code >} * {@link JAXBElement }{@code <}{@link Object }{@code >} * * */ public List<JAXBElement<Object>> get_GenericApplicationPropertyOfRasterRelief() { if (_GenericApplicationPropertyOfRasterRelief == null) { _GenericApplicationPropertyOfRasterRelief = new ArrayList<JAXBElement<Object>>(); } return this._GenericApplicationPropertyOfRasterRelief; } public boolean isSet_GenericApplicationPropertyOfRasterRelief() { return ((this._GenericApplicationPropertyOfRasterRelief!= null)&&(!this._GenericApplicationPropertyOfRasterRelief.isEmpty())); } public void unset_GenericApplicationPropertyOfRasterRelief() { this._GenericApplicationPropertyOfRasterRelief = null; } public void set_GenericApplicationPropertyOfRasterRelief(List<JAXBElement<Object>> value) { this._GenericApplicationPropertyOfRasterRelief = value; } }