// // 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.XmlType; /** * Encapsulates a ring to represent the surface boundary property of a surface. * * <p>Java-Klasse für AbstractRingPropertyType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractRingPropertyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/gml}_Ring"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractRingPropertyType", propOrder = { "_Ring" }) public class AbstractRingPropertyType { @XmlElementRef(name = "_Ring", namespace = "http://www.opengis.net/gml", type = JAXBElement.class) protected JAXBElement<? extends AbstractRingType> _Ring; /** * Ruft den Wert der _Ring-Eigenschaft ab. * * @return * possible object is * {@link JAXBElement }{@code <}{@link LinearRingType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractRingType }{@code >} * {@link JAXBElement }{@code <}{@link RingType }{@code >} * */ public JAXBElement<? extends AbstractRingType> get_Ring() { return _Ring; } /** * Legt den Wert der _Ring-Eigenschaft fest. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link LinearRingType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractRingType }{@code >} * {@link JAXBElement }{@code <}{@link RingType }{@code >} * */ public void set_Ring(JAXBElement<? extends AbstractRingType> value) { this._Ring = value; } public boolean isSet_Ring() { return (this._Ring!= null); } }