// // 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * A value in the time domain is measured relative to a temporal reference system. Common * types of reference systems include calendars, ordinal temporal reference systems, and * temporal coordinate systems (time elapsed since some epoch, e.g. UNIX time). * * <p>Java-Klasse für AbstractTimeReferenceSystemType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractTimeReferenceSystemType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}DefinitionType"> * <sequence> * <element name="domainOfValidity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractTimeReferenceSystemType", propOrder = { "domainOfValidity" }) @XmlSeeAlso({ TimeOrdinalReferenceSystemType.class, TimeCoordinateSystemType.class, TimeClockType.class, TimeCalendarType.class }) public abstract class AbstractTimeReferenceSystemType extends DefinitionType { protected String domainOfValidity; /** * Ruft den Wert der domainOfValidity-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getDomainOfValidity() { return domainOfValidity; } /** * Legt den Wert der domainOfValidity-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setDomainOfValidity(String value) { this.domainOfValidity = value; } public boolean isSetDomainOfValidity() { return (this.domainOfValidity!= null); } }