/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2012, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.gml.xml.v321; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for AbstractDatumType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AbstractDatumType"> * <complexContent> * <extension base="{http://www.opengis.net/gml/3.2}IdentifiedObjectType"> * <sequence> * <element ref="{http://www.opengis.net/gml/3.2}domainOfValidity" minOccurs="0"/> * <element ref="{http://www.opengis.net/gml/3.2}scope" maxOccurs="unbounded"/> * <element ref="{http://www.opengis.net/gml/3.2}anchorDefinition" minOccurs="0"/> * <element ref="{http://www.opengis.net/gml/3.2}realizationEpoch" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(propOrder = { "domainOfValidity", "scope", "anchorDefinition", "realizationEpoch" }) @XmlSeeAlso({ VerticalDatumType.class, EngineeringDatumType.class, ImageDatumType.class, GeodeticDatumType.class, TemporalDatumBaseType.class }) public abstract class AbstractDatumType extends IdentifiedObjectType { private DomainOfValidity domainOfValidity; @XmlElement(required = true) private List<String> scope; @XmlElementRef(name = "anchorDefinition", namespace = "http://www.opengis.net/gml/3.2", type = JAXBElement.class) private JAXBElement<CodeType> anchorDefinition; @XmlSchemaType(name = "date") private XMLGregorianCalendar realizationEpoch; /** * Gets the value of the domainOfValidity property. * * @return * possible object is * {@link DomainOfValidity } * */ public DomainOfValidity getDomainOfValidity() { return domainOfValidity; } /** * Sets the value of the domainOfValidity property. * * @param value * allowed object is * {@link DomainOfValidity } * */ public void setDomainOfValidity(DomainOfValidity value) { this.domainOfValidity = value; } /** * Gets the value of the scope 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 scope property. * * <p> * For example, to add a new item, do as follows: * <pre> * getScope().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getScope() { if (scope == null) { scope = new ArrayList<String>(); } return this.scope; } /** * Gets the value of the anchorDefinition property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link CodeType }{@code >} * {@link JAXBElement }{@code <}{@link CodeType }{@code >} * */ public JAXBElement<CodeType> getAnchorDefinition() { return anchorDefinition; } /** * Sets the value of the anchorDefinition property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link CodeType }{@code >} * {@link JAXBElement }{@code <}{@link CodeType }{@code >} * */ public void setAnchorDefinition(JAXBElement<CodeType> value) { this.anchorDefinition = ((JAXBElement<CodeType> ) value); } /** * Gets the value of the realizationEpoch property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getRealizationEpoch() { return realizationEpoch; } /** * Sets the value of the realizationEpoch property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setRealizationEpoch(XMLGregorianCalendar value) { this.realizationEpoch = value; } }