// // 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.citygml.generics._1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Generic (user defined) attributes may be used to represent attributes which are not covered explicitly by * the CityGML schema. Generic attributes must be used with care; they shall only be used if there is no appropiate attribute * available in the overall CityGML schema. Oherwise, problems concerning semantic interoperability may arise. A generic * attribute has a name and a value, which has further subclasses (IntAttrribute, StringAttribute, ...). * * <p>Java-Klasse für AbstractGenericAttributeType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractGenericAttributeType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * </sequence> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractGenericAttributeType") @XmlSeeAlso({ UriAttributeType.class, DoubleAttributeType.class, StringAttributeType.class, DateAttributeType.class, IntAttributeType.class }) public abstract class AbstractGenericAttributeType { @XmlAttribute(name = "name", required = true) protected String name; /** * Ruft den Wert der name-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } public boolean isSetName() { return (this.name!= null); } }