// // 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.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Encapsulates a knot to use it in a geometric type. * * <p>Java-Klasse für KnotPropertyType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="KnotPropertyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Knot" type="{http://www.opengis.net/gml}KnotType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KnotPropertyType", propOrder = { "knot" }) public class KnotPropertyType { @XmlElement(name = "Knot", required = true) protected KnotType knot; /** * Ruft den Wert der knot-Eigenschaft ab. * * @return * possible object is * {@link KnotType } * */ public KnotType getKnot() { return knot; } /** * Legt den Wert der knot-Eigenschaft fest. * * @param value * allowed object is * {@link KnotType } * */ public void setKnot(KnotType value) { this.knot = value; } public boolean isSetKnot() { return (this.knot!= null); } }