//
// 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Name or code with an (optional) authority. Text token.
* If the codeSpace attribute is present, then its value should identify a dictionary, thesaurus
* or authority for the term, such as the organisation who assigned the value,
* or the dictionary from which it is taken.
* A text string with an optional codeSpace attribute.
*
* <p>Java-Klasse für CodeType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="CodeType">
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
* <attribute name="codeSpace" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* </extension>
* </simpleContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CodeType", propOrder = {
"value"
})
@XmlSeeAlso({
VerticalDatumTypeType.class,
DerivedCRSTypeType.class,
PixelInCellType.class
})
public class CodeType {
@XmlValue
protected String value;
@XmlAttribute(name = "codeSpace")
@XmlSchemaType(name = "anyURI")
protected String codeSpace;
/**
* Ruft den Wert der value-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Legt den Wert der value-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
public boolean isSetValue() {
return (this.value!= null);
}
/**
* Ruft den Wert der codeSpace-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeSpace() {
return codeSpace;
}
/**
* Legt den Wert der codeSpace-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeSpace(String value) {
this.codeSpace = value;
}
public boolean isSetCodeSpace() {
return (this.codeSpace!= null);
}
}