// // 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.building._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.citygml._2.ImplicitRepresentationPropertyType; import net.opengis.gml.MultiSurfacePropertyType; /** * Type for openings (doors, windows) in boundary surfaces. Used in LOD3 and LOD4 only. As subclass of * _CityObject, an _Opening inherits all attributes and relations, in particular an id, names, external references, and * generalization relations. * * <p>Java-Klasse für AbstractOpeningType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractOpeningType"> * <complexContent> * <extension base="{http://www.opengis.net/citygml/2.0}AbstractCityObjectType"> * <sequence> * <element name="lod3MultiSurface" type="{http://www.opengis.net/gml}MultiSurfacePropertyType" minOccurs="0"/> * <element name="lod4MultiSurface" type="{http://www.opengis.net/gml}MultiSurfacePropertyType" minOccurs="0"/> * <element name="lod3ImplicitRepresentation" type="{http://www.opengis.net/citygml/2.0}ImplicitRepresentationPropertyType" minOccurs="0"/> * <element name="lod4ImplicitRepresentation" type="{http://www.opengis.net/citygml/2.0}ImplicitRepresentationPropertyType" minOccurs="0"/> * <element ref="{http://www.opengis.net/citygml/building/2.0}_GenericApplicationPropertyOfOpening" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractOpeningType", propOrder = { "lod3MultiSurface", "lod4MultiSurface", "lod3ImplicitRepresentation", "lod4ImplicitRepresentation", "_GenericApplicationPropertyOfOpening" }) @XmlSeeAlso({ WindowType.class, DoorType.class }) public abstract class AbstractOpeningType extends AbstractCityObjectType { protected MultiSurfacePropertyType lod3MultiSurface; protected MultiSurfacePropertyType lod4MultiSurface; protected ImplicitRepresentationPropertyType lod3ImplicitRepresentation; protected ImplicitRepresentationPropertyType lod4ImplicitRepresentation; @XmlElementRef(name = "_GenericApplicationPropertyOfOpening", namespace = "http://www.opengis.net/citygml/building/2.0", type = JAXBElement.class, required = false) protected List<JAXBElement<Object>> _GenericApplicationPropertyOfOpening; /** * Ruft den Wert der lod3MultiSurface-Eigenschaft ab. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod3MultiSurface() { return lod3MultiSurface; } /** * Legt den Wert der lod3MultiSurface-Eigenschaft fest. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod3MultiSurface(MultiSurfacePropertyType value) { this.lod3MultiSurface = value; } public boolean isSetLod3MultiSurface() { return (this.lod3MultiSurface!= null); } /** * Ruft den Wert der lod4MultiSurface-Eigenschaft ab. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod4MultiSurface() { return lod4MultiSurface; } /** * Legt den Wert der lod4MultiSurface-Eigenschaft fest. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod4MultiSurface(MultiSurfacePropertyType value) { this.lod4MultiSurface = value; } public boolean isSetLod4MultiSurface() { return (this.lod4MultiSurface!= null); } /** * Ruft den Wert der lod3ImplicitRepresentation-Eigenschaft ab. * * @return * possible object is * {@link ImplicitRepresentationPropertyType } * */ public ImplicitRepresentationPropertyType getLod3ImplicitRepresentation() { return lod3ImplicitRepresentation; } /** * Legt den Wert der lod3ImplicitRepresentation-Eigenschaft fest. * * @param value * allowed object is * {@link ImplicitRepresentationPropertyType } * */ public void setLod3ImplicitRepresentation(ImplicitRepresentationPropertyType value) { this.lod3ImplicitRepresentation = value; } public boolean isSetLod3ImplicitRepresentation() { return (this.lod3ImplicitRepresentation!= null); } /** * Ruft den Wert der lod4ImplicitRepresentation-Eigenschaft ab. * * @return * possible object is * {@link ImplicitRepresentationPropertyType } * */ public ImplicitRepresentationPropertyType getLod4ImplicitRepresentation() { return lod4ImplicitRepresentation; } /** * Legt den Wert der lod4ImplicitRepresentation-Eigenschaft fest. * * @param value * allowed object is * {@link ImplicitRepresentationPropertyType } * */ public void setLod4ImplicitRepresentation(ImplicitRepresentationPropertyType value) { this.lod4ImplicitRepresentation = value; } public boolean isSetLod4ImplicitRepresentation() { return (this.lod4ImplicitRepresentation!= null); } /** * Gets the value of the genericApplicationPropertyOfOpening 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 genericApplicationPropertyOfOpening property. * * <p> * For example, to add a new item, do as follows: * <pre> * get_GenericApplicationPropertyOfOpening().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_GenericApplicationPropertyOfOpening() { if (_GenericApplicationPropertyOfOpening == null) { _GenericApplicationPropertyOfOpening = new ArrayList<JAXBElement<Object>>(); } return this._GenericApplicationPropertyOfOpening; } public boolean isSet_GenericApplicationPropertyOfOpening() { return ((this._GenericApplicationPropertyOfOpening!= null)&&(!this._GenericApplicationPropertyOfOpening.isEmpty())); } public void unset_GenericApplicationPropertyOfOpening() { this._GenericApplicationPropertyOfOpening = null; } public void set_GenericApplicationPropertyOfOpening(List<JAXBElement<Object>> value) { this._GenericApplicationPropertyOfOpening = value; } }