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 ClosureSurfaceType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="ClosureSurfaceType"> * <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}_GenericApplicationPropertyOfClosureSurface" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClosureSurfaceType", propOrder = { "_GenericApplicationPropertyOfClosureSurface" }) public class ClosureSurfaceType extends AbstractBoundarySurfaceType { protected List<Object> _GenericApplicationPropertyOfClosureSurface; /** * Gets the value of the genericApplicationPropertyOfClosureSurface 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 genericApplicationPropertyOfClosureSurface property. * * <p> * For example, to add a new item, do as follows: * <pre> * get_GenericApplicationPropertyOfClosureSurface().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> get_GenericApplicationPropertyOfClosureSurface() { if (_GenericApplicationPropertyOfClosureSurface == null) { _GenericApplicationPropertyOfClosureSurface = new ArrayList<Object>(); } return this._GenericApplicationPropertyOfClosureSurface; } public boolean isSet_GenericApplicationPropertyOfClosureSurface() { return ((this._GenericApplicationPropertyOfClosureSurface!= null)&&(!this._GenericApplicationPropertyOfClosureSurface.isEmpty())); } public void unset_GenericApplicationPropertyOfClosureSurface() { this._GenericApplicationPropertyOfClosureSurface = null; } }