// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * The end Node of each directedEdge of a TopoCurveType * is the start Node of the next directedEdge of the TopoCurveType in document order. The TopoCurve type and element represent a homogeneous topological expression, a list of directed edges, which if realised are isomorphic to a geometric curve primitive. The intended use of TopoCurve is to appear within a line feature instance to express the structural and geometric relationships of this line to other features via the shared edge definitions. * * <p>Java-Klasse für TopoCurveType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="TopoCurveType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractTopologyType"> * <sequence> * <element ref="{http://www.opengis.net/gml}directedEdge" maxOccurs="unbounded"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TopoCurveType", propOrder = { "directedEdge" }) public class TopoCurveType extends AbstractTopologyType { @XmlElement(required = true) protected List<DirectedEdgePropertyType> directedEdge; /** * 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; } public void setDirectedEdge(List<DirectedEdgePropertyType> value) { this.directedEdge = value; } }