// // 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._1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java-Klasse für ExternalObjectReferenceType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="ExternalObjectReferenceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="uri" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExternalObjectReferenceType", propOrder = { "name", "uri" }) public class ExternalObjectReferenceType { protected String name; @XmlSchemaType(name = "anyURI") protected String uri; /** * 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); } /** * Ruft den Wert der uri-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getUri() { return uri; } /** * Legt den Wert der uri-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setUri(String value) { this.uri = value; } public boolean isSetUri() { return (this.uri!= null); } }