//
// 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.gml;
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;
/**
* A solid is the basis for 3-dimensional geometry. The extent of a solid is defined by the boundary surfaces (shells). A shell is represented by a composite surface, where every shell is used to represent a single connected component of the boundary of a solid. It consists of a composite surface (a list of orientable surfaces) connected in a topological cycle (an object whose boundary is empty). Unlike a Ring, a Shell's elements have no natural sort order. Like Rings, Shells are simple.
*
* <p>Java-Klasse für SolidType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="SolidType">
* <complexContent>
* <extension base="{http://www.opengis.net/gml}AbstractSolidType">
* <sequence>
* <element name="exterior" type="{http://www.opengis.net/gml}SurfacePropertyType" minOccurs="0"/>
* <element name="interior" type="{http://www.opengis.net/gml}SurfacePropertyType" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SolidType", propOrder = {
"exterior",
"interior"
})
public class SolidType
extends AbstractSolidType
{
protected SurfacePropertyType exterior;
protected List<SurfacePropertyType> interior;
/**
* Ruft den Wert der exterior-Eigenschaft ab.
*
* @return
* possible object is
* {@link SurfacePropertyType }
*
*/
public SurfacePropertyType getExterior() {
return exterior;
}
/**
* Legt den Wert der exterior-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link SurfacePropertyType }
*
*/
public void setExterior(SurfacePropertyType value) {
this.exterior = value;
}
public boolean isSetExterior() {
return (this.exterior!= null);
}
/**
* Gets the value of the interior 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 interior property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getInterior().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link SurfacePropertyType }
*
*
*/
public List<SurfacePropertyType> getInterior() {
if (interior == null) {
interior = new ArrayList<SurfacePropertyType>();
}
return this.interior;
}
public boolean isSetInterior() {
return ((this.interior!= null)&&(!this.interior.isEmpty()));
}
public void unsetInterior() {
this.interior = null;
}
public void setInterior(List<SurfacePropertyType> value) {
this.interior = value;
}
}