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.XmlElement; import javax.xml.bind.annotation.XmlType; import net.opengis.citygml._1.AbstractCityObjectType; import net.opengis.gml.MultiSurfacePropertyType; import net.opengis.gml.SolidPropertyType; /** * A BoundarySurface (German translation is 'Begrenzungsfl�che') is a thematic object which classifies surfaces bounding a building or a room. The * geometry of a BoundarySurface is given by MultiSurfaces. As it is a subclass of _CityObject, it inherits all atributes and relations, in particular the external * references, the generic attributes, and the generalization relations. * * <p>Java-Klasse f�r HollowSpaceType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="HollowSpaceType"> * <complexContent> * <extension base="{http://www.opengis.net/citygml/1.0}AbstractCityObjectType"> * <sequence> * <element name="lod4Solid" type="{http://www.opengis.net/gml}SolidPropertyType" minOccurs="0"/> * <element name="lod4MultiSurface" type="{http://www.opengis.net/gml}MultiSurfacePropertyType" minOccurs="0"/> * <element ref="{http://www.citygml.org/ade/sub/0.9.0}_GenericApplicationPropertyOfHollowSpace" maxOccurs="unbounded" minOccurs="0"/> * <element name="boundedBy" type="{http://www.citygml.org/ade/sub/0.9.0}BoundarySurfacePropertyType" maxOccurs="unbounded" minOccurs="0"/> * <element name="InteriorFurniture" type="{http://www.citygml.org/ade/sub/0.9.0}InteriorFurniturePropertyType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HollowSpaceType", propOrder = { "lod4Solid", "lod4MultiSurface", "_GenericApplicationPropertyOfHollowSpace", "boundedBySurface", "interiorFurniture" }) public class HollowSpaceType extends AbstractCityObjectType { protected SolidPropertyType lod4Solid; protected MultiSurfacePropertyType lod4MultiSurface; protected List<Object> _GenericApplicationPropertyOfHollowSpace; @XmlElement(name = "boundedBy") protected List<BoundarySurfacePropertyType> boundedBySurface; @XmlElement(name = "InteriorFurniture") protected List<InteriorFurniturePropertyType> interiorFurniture; /** * Ruft den Wert der lod4Solid-Eigenschaft ab. * * @return * possible object is * {@link SolidPropertyType } * */ public SolidPropertyType getLod4Solid() { return lod4Solid; } /** * Legt den Wert der lod4Solid-Eigenschaft fest. * * @param value * allowed object is * {@link SolidPropertyType } * */ public void setLod4Solid(SolidPropertyType value) { this.lod4Solid = value; } public boolean isSetLod4Solid() { return (this.lod4Solid!= 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); } /** * Gets the value of the genericApplicationPropertyOfHollowSpace 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 genericApplicationPropertyOfHollowSpace property. * * <p> * For example, to add a new item, do as follows: * <pre> * get_GenericApplicationPropertyOfHollowSpace().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> get_GenericApplicationPropertyOfHollowSpace() { if (_GenericApplicationPropertyOfHollowSpace == null) { _GenericApplicationPropertyOfHollowSpace = new ArrayList<Object>(); } return this._GenericApplicationPropertyOfHollowSpace; } public boolean isSet_GenericApplicationPropertyOfHollowSpace() { return ((this._GenericApplicationPropertyOfHollowSpace!= null)&&(!this._GenericApplicationPropertyOfHollowSpace.isEmpty())); } public void unset_GenericApplicationPropertyOfHollowSpace() { this._GenericApplicationPropertyOfHollowSpace = null; } /** * Gets the value of the boundedBySurface 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 boundedBySurface property. * * <p> * For example, to add a new item, do as follows: * <pre> * getBoundedBySurface().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link BoundarySurfacePropertyType } * * */ public List<BoundarySurfacePropertyType> getBoundedBySurface() { if (boundedBySurface == null) { boundedBySurface = new ArrayList<BoundarySurfacePropertyType>(); } return this.boundedBySurface; } public boolean isSetBoundedBySurface() { return ((this.boundedBySurface!= null)&&(!this.boundedBySurface.isEmpty())); } public void unsetBoundedBySurface() { this.boundedBySurface = null; } /** * Gets the value of the interiorFurniture 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 interiorFurniture property. * * <p> * For example, to add a new item, do as follows: * <pre> * getInteriorFurniture().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link InteriorFurniturePropertyType } * * */ public List<InteriorFurniturePropertyType> getInteriorFurniture() { if (interiorFurniture == null) { interiorFurniture = new ArrayList<InteriorFurniturePropertyType>(); } return this.interiorFurniture; } public boolean isSetInteriorFurniture() { return ((this.interiorFurniture!= null)&&(!this.interiorFurniture.isEmpty())); } public void unsetInteriorFurniture() { this.interiorFurniture = null; } }