// // 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.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlMixed; import javax.xml.bind.annotation.XmlType; /** * Label is mixed -- composed of text and XPath expressions used to extract the useful information from the feature. * * <p>Java-Klasse für LabelType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="LabelType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="LabelExpression" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute ref="{http://www.opengis.net/gml}transform"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LabelType", propOrder = { "content" }) public class LabelType { @XmlElementRef(name = "LabelExpression", namespace = "http://www.opengis.net/gml", type = JAXBElement.class, required = false) @XmlMixed protected List<Serializable> content; @XmlAttribute(name = "transform", namespace = "http://www.opengis.net/gml") protected String transform; /** * Label is mixed -- composed of text and XPath expressions used to extract the useful information from the feature.Gets the value of the content 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 content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ public List<Serializable> getContent() { if (content == null) { content = new ArrayList<Serializable>(); } return this.content; } public boolean isSetContent() { return ((this.content!= null)&&(!this.content.isEmpty())); } public void unsetContent() { this.content = null; } /** * Ruft den Wert der transform-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTransform() { return transform; } /** * Legt den Wert der transform-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTransform(String value) { this.transform = value; } public boolean isSetTransform() { return (this.transform!= null); } public void setContent(List<Serializable> value) { this.content = value; } }