/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.citygml.xml.v100.building; 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.citygml.xml.v100.AbstractCityObjectType; import org.geotoolkit.gml.xml.v311.MultiSurfacePropertyType; /** * Type for openings (doors, windows) in walls. 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 class for AbstractOpeningType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AbstractOpeningType"> * <complexContent> * <extension base="{http://www.opengis.net/citygml/1.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 ref="{http://www.opengis.net/citygml/building/1.0}_GenericApplicationPropertyOfOpening" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractOpeningType", propOrder = { "lod3MultiSurface", "lod4MultiSurface", "genericApplicationPropertyOfOpening" }) @XmlSeeAlso({ WindowType.class, DoorType.class }) public abstract class AbstractOpeningType extends AbstractCityObjectType { private MultiSurfacePropertyType lod3MultiSurface; private MultiSurfacePropertyType lod4MultiSurface; @XmlElement(name = "_GenericApplicationPropertyOfOpening") private List<Object> genericApplicationPropertyOfOpening; /** * Gets the value of the lod3MultiSurface property. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod3MultiSurface() { return lod3MultiSurface; } /** * Sets the value of the lod3MultiSurface property. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod3MultiSurface(final MultiSurfacePropertyType value) { this.lod3MultiSurface = value; } /** * Gets the value of the lod4MultiSurface property. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod4MultiSurface() { return lod4MultiSurface; } /** * Sets the value of the lod4MultiSurface property. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod4MultiSurface(final MultiSurfacePropertyType value) { this.lod4MultiSurface = value; } /** * 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> * getGenericApplicationPropertyOfOpening().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getGenericApplicationPropertyOfOpening() { if (genericApplicationPropertyOfOpening == null) { genericApplicationPropertyOfOpening = new ArrayList<Object>(); } return this.genericApplicationPropertyOfOpening; } }