//
// 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;
/**
* Its optional co-boundary is a set of connected directedEdges. The orientation of one of these dirEdges is "+" if the Node is the "to" node of the Edge, and "-" if it is the "from" node.
*
* <p>Java-Klasse für NodeType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="NodeType">
* <complexContent>
* <extension base="{http://www.opengis.net/gml}AbstractTopoPrimitiveType">
* <sequence>
* <element ref="{http://www.opengis.net/gml}directedEdge" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.opengis.net/gml}pointProperty" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NodeType", propOrder = {
"directedEdge",
"pointProperty"
})
public class NodeType
extends AbstractTopoPrimitiveType
{
protected List<DirectedEdgePropertyType> directedEdge;
protected PointPropertyType pointProperty;
/**
* Gets the value of the directedEdge 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 directedEdge property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getDirectedEdge().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link DirectedEdgePropertyType }
*
*
*/
public List<DirectedEdgePropertyType> getDirectedEdge() {
if (directedEdge == null) {
directedEdge = new ArrayList<DirectedEdgePropertyType>();
}
return this.directedEdge;
}
public boolean isSetDirectedEdge() {
return ((this.directedEdge!= null)&&(!this.directedEdge.isEmpty()));
}
public void unsetDirectedEdge() {
this.directedEdge = null;
}
/**
* Ruft den Wert der pointProperty-Eigenschaft ab.
*
* @return
* possible object is
* {@link PointPropertyType }
*
*/
public PointPropertyType getPointProperty() {
return pointProperty;
}
/**
* Legt den Wert der pointProperty-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PointPropertyType }
*
*/
public void setPointProperty(PointPropertyType value) {
this.pointProperty = value;
}
public boolean isSetPointProperty() {
return (this.pointProperty!= null);
}
public void setDirectedEdge(List<DirectedEdgePropertyType> value) {
this.directedEdge = value;
}
}