//
// 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 javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* A Surface is a 2-dimensional primitive and is composed of one or more surface patches. The surface patches are connected to one another.
* The orientation of the surface is positive ("up"). The orientation of a surface chooses an "up" direction through the choice of the upward normal, which, if the surface is not a cycle, is the side of the surface from which the exterior boundary appears counterclockwise. Reversal of the surface orientation reverses the curve orientation of each boundary component, and interchanges the conceptual "up" and "down" direction of the surface. If the surface is the boundary of a solid, the "up" direction is usually outward. For closed surfaces, which have no boundary, the up direction is that of the surface patches, which must be consistent with one another. Its included surface patches describe the interior structure of the Surface.
*
* <p>Java-Klasse für SurfaceType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="SurfaceType">
* <complexContent>
* <extension base="{http://www.opengis.net/gml}AbstractSurfaceType">
* <sequence>
* <element ref="{http://www.opengis.net/gml}patches"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SurfaceType", propOrder = {
"patches"
})
@XmlSeeAlso({
PolyhedralSurfaceType.class,
TriangulatedSurfaceType.class
})
public class SurfaceType
extends AbstractSurfaceType
{
@XmlElementRef(name = "patches", namespace = "http://www.opengis.net/gml", type = JAXBElement.class)
protected JAXBElement<? extends SurfacePatchArrayPropertyType> patches;
/**
* This element encapsulates the patches of the surface.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link PolygonPatchArrayPropertyType }{@code >}
* {@link JAXBElement }{@code <}{@link SurfacePatchArrayPropertyType }{@code >}
* {@link JAXBElement }{@code <}{@link TrianglePatchArrayPropertyType }{@code >}
*
*/
public JAXBElement<? extends SurfacePatchArrayPropertyType> getPatches() {
return patches;
}
/**
* Legt den Wert der patches-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link PolygonPatchArrayPropertyType }{@code >}
* {@link JAXBElement }{@code <}{@link SurfacePatchArrayPropertyType }{@code >}
* {@link JAXBElement }{@code <}{@link TrianglePatchArrayPropertyType }{@code >}
*
*/
public void setPatches(JAXBElement<? extends SurfacePatchArrayPropertyType> value) {
this.patches = value;
}
public boolean isSetPatches() {
return (this.patches!= null);
}
}