// // 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._2; 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.XmlElementRef; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import net.opengis.citygml._2.AbstractCityObjectType; import net.opengis.gml.PolygonPropertyType; /** * Type describing the components of a relief feature - either a TIN, a Grid, mass points or break lines. As * subclass of _CityObject, a ReliefComponent inherits all attributes and relations, in particular an id, names, external * references, and generalization relations. * * <p>Java-Klasse für AbstractReliefComponentType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractReliefComponentType"> * <complexContent> * <extension base="{http://www.opengis.net/citygml/2.0}AbstractCityObjectType"> * <sequence> * <element name="lod" type="{http://www.opengis.net/citygml/2.0}integerBetween0and4"/> * <element name="extent" type="{http://www.opengis.net/gml}PolygonPropertyType" minOccurs="0"/> * <element ref="{http://www.opengis.net/citygml/relief/2.0}_GenericApplicationPropertyOfReliefComponent" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractReliefComponentType", propOrder = { "lod", "extent", "_GenericApplicationPropertyOfReliefComponent" }) @XmlSeeAlso({ BreaklineReliefType.class, TINReliefType.class, RasterReliefType.class, MassPointReliefType.class }) public abstract class AbstractReliefComponentType extends AbstractCityObjectType { protected int lod; protected PolygonPropertyType extent; @XmlElementRef(name = "_GenericApplicationPropertyOfReliefComponent", namespace = "http://www.opengis.net/citygml/relief/2.0", type = JAXBElement.class, required = false) protected List<JAXBElement<Object>> _GenericApplicationPropertyOfReliefComponent; /** * Ruft den Wert der lod-Eigenschaft ab. * */ public int getLod() { return lod; } /** * Legt den Wert der lod-Eigenschaft fest. * */ public void setLod(int value) { this.lod = value; } public boolean isSetLod() { return true; } /** * Ruft den Wert der extent-Eigenschaft ab. * * @return * possible object is * {@link PolygonPropertyType } * */ public PolygonPropertyType getExtent() { return extent; } /** * Legt den Wert der extent-Eigenschaft fest. * * @param value * allowed object is * {@link PolygonPropertyType } * */ public void setExtent(PolygonPropertyType value) { this.extent = value; } public boolean isSetExtent() { return (this.extent!= null); } /** * Gets the value of the genericApplicationPropertyOfReliefComponent 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 genericApplicationPropertyOfReliefComponent property. * * <p> * For example, to add a new item, do as follows: * <pre> * get_GenericApplicationPropertyOfReliefComponent().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_GenericApplicationPropertyOfReliefComponent() { if (_GenericApplicationPropertyOfReliefComponent == null) { _GenericApplicationPropertyOfReliefComponent = new ArrayList<JAXBElement<Object>>(); } return this._GenericApplicationPropertyOfReliefComponent; } public boolean isSet_GenericApplicationPropertyOfReliefComponent() { return ((this._GenericApplicationPropertyOfReliefComponent!= null)&&(!this._GenericApplicationPropertyOfReliefComponent.isEmpty())); } public void unset_GenericApplicationPropertyOfReliefComponent() { this._GenericApplicationPropertyOfReliefComponent = null; } public void set_GenericApplicationPropertyOfReliefComponent(List<JAXBElement<Object>> value) { this._GenericApplicationPropertyOfReliefComponent = value; } }