// // 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.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * Deprecated in GML 3.1.0 * * <p>Java-Klasse für PriorityLocationPropertyType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="PriorityLocationPropertyType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}LocationPropertyType"> * <attribute name="priority" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PriorityLocationPropertyType") public class PriorityLocationPropertyType extends LocationPropertyType { @XmlAttribute(name = "priority") protected String priority; /** * Ruft den Wert der priority-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getPriority() { return priority; } /** * Legt den Wert der priority-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setPriority(String value) { this.priority = value; } public boolean isSetPriority() { return (this.priority!= null); } }