/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2011, Open Source Geospatial Foundation (OSGeo) * (C) 2004-2005, Open Geospatial Consortium Inc. * * All Rights Reserved. http://www.opengis.org/legal/ */ package org.opengis.metadata.extent; import org.opengis.annotation.UML; import org.opengis.temporal.TemporalPrimitive; import static org.opengis.annotation.Obligation.*; import static org.opengis.annotation.Specification.*; /** * Time period covered by the content of the dataset. * * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/library/opengis/src/main/java/org/opengis/metadata/extent/TemporalExtent.java $ * @version <A HREF="http://www.opengeospatial.org/standards/as#01-111">ISO 19115</A> * @author Martin Desruisseaux (IRD) * @since GeoAPI 1.0 */ @UML(identifier="EX_TemporalExtent", specification=ISO_19115) public interface TemporalExtent { /** * Returns the date and time for the content of the dataset. * * @return The date and time for the content. */ @UML(identifier="extent", obligation=MANDATORY, specification=ISO_19108) TemporalPrimitive getExtent(); }