// // 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 java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * A calendar is a discrete temporal reference system * that provides a basis for defining temporal position to a resolution of one day. * A single calendar may reference more than one calendar era. * * <p>Java-Klasse für TimeCalendarType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="TimeCalendarType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractTimeReferenceSystemType"> * <sequence> * <element name="referenceFrame" type="{http://www.opengis.net/gml}TimeCalendarEraPropertyType" maxOccurs="unbounded"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TimeCalendarType", propOrder = { "referenceFrame" }) public class TimeCalendarType extends AbstractTimeReferenceSystemType { @XmlElement(required = true) protected List<TimeCalendarEraPropertyType> referenceFrame; /** * Gets the value of the referenceFrame property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the referenceFrame property. * * <p> * For example, to add a new item, do as follows: * <pre> * getReferenceFrame().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link TimeCalendarEraPropertyType } * * */ public List<TimeCalendarEraPropertyType> getReferenceFrame() { if (referenceFrame == null) { referenceFrame = new ArrayList<TimeCalendarEraPropertyType>(); } return this.referenceFrame; } public boolean isSetReferenceFrame() { return ((this.referenceFrame!= null)&&(!this.referenceFrame.isEmpty())); } public void unsetReferenceFrame() { this.referenceFrame = null; } public void setReferenceFrame(List<TimeCalendarEraPropertyType> value) { this.referenceFrame = value; } }