package ade.sub.jaxb; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java-Klasse f�r FloorSurfaceType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="FloorSurfaceType"> * <complexContent> * <extension base="{http://www.citygml.org/ade/sub/0.9.0}AbstractBoundarySurfaceType"> * <sequence> * <element ref="{http://www.citygml.org/ade/sub/0.9.0}_GenericApplicationPropertyOfFloorSurface" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FloorSurfaceType", propOrder = { "_GenericApplicationPropertyOfFloorSurface" }) public class FloorSurfaceType extends AbstractBoundarySurfaceType { protected List<Object> _GenericApplicationPropertyOfFloorSurface; /** * Gets the value of the genericApplicationPropertyOfFloorSurface 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 genericApplicationPropertyOfFloorSurface property. * * <p> * For example, to add a new item, do as follows: * <pre> * get_GenericApplicationPropertyOfFloorSurface().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> get_GenericApplicationPropertyOfFloorSurface() { if (_GenericApplicationPropertyOfFloorSurface == null) { _GenericApplicationPropertyOfFloorSurface = new ArrayList<Object>(); } return this._GenericApplicationPropertyOfFloorSurface; } public boolean isSet_GenericApplicationPropertyOfFloorSurface() { return ((this._GenericApplicationPropertyOfFloorSurface!= null)&&(!this._GenericApplicationPropertyOfFloorSurface.isEmpty())); } public void unset_GenericApplicationPropertyOfFloorSurface() { this._GenericApplicationPropertyOfFloorSurface = null; } }