//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition of a unit of measure which is a base unit from the system of units. A base unit cannot be derived by combination of other base units within this system. Sometimes known as "fundamental unit".
*
* <p>Java-Klasse für BaseUnitType complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType name="BaseUnitType">
* <complexContent>
* <extension base="{http://www.opengis.net/gml}UnitDefinitionType">
* <sequence>
* <element name="unitsSystem" type="{http://www.opengis.net/gml}ReferenceType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BaseUnitType", propOrder = {
"unitsSystem"
})
public class BaseUnitType
extends UnitDefinitionType
{
@XmlElement(required = true)
protected ReferenceType unitsSystem;
/**
* Ruft den Wert der unitsSystem-Eigenschaft ab.
*
* @return
* possible object is
* {@link ReferenceType }
*
*/
public ReferenceType getUnitsSystem() {
return unitsSystem;
}
/**
* Legt den Wert der unitsSystem-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ReferenceType }
*
*/
public void setUnitsSystem(ReferenceType value) {
this.unitsSystem = value;
}
public boolean isSetUnitsSystem() {
return (this.unitsSystem!= null);
}
}