source: osm/applications/editors/josm/plugins/opendata/includes/org/opengis/metadata/extent/GeographicExtent.java@ 28000

Last change on this file since 28000 was 28000, checked in by donvip, 12 years ago

Import new "opendata" JOSM plugin

File size: 1.3 KB
Line 
1/*
2 * GeoTools - The Open Source Java GIS Toolkit
3 * http://geotools.org
4 *
5 * (C) 2011, Open Source Geospatial Foundation (OSGeo)
6 * (C) 2004-2005, Open Geospatial Consortium Inc.
7 *
8 * All Rights Reserved. http://www.opengis.org/legal/
9 */
10package org.opengis.metadata.extent;
11
12import org.opengis.annotation.UML;
13
14import static org.opengis.annotation.Obligation.*;
15import static org.opengis.annotation.Specification.*;
16
17
18/**
19 * Base interface for geographic area of the dataset.
20 *
21 *
22 * @source $URL: http://svn.osgeo.org/geotools/branches/2.7.x/modules/library/opengis/src/main/java/org/opengis/metadata/extent/GeographicExtent.java $
23 * @version <A HREF="http://www.opengeospatial.org/standards/as#01-111">ISO 19115</A>
24 * @author Martin Desruisseaux (IRD)
25 * @author Cory Horner (Refractions Research)
26 * @since GeoAPI 1.0
27 */
28@UML(identifier="EX_GeographicExtent", specification=ISO_19115)
29public interface GeographicExtent {
30 /**
31 * Indication of whether the bounding polygon encompasses an area covered by the data
32 * (<cite>inclusion</cite>) or an area where data is not present (<cite>exclusion</cite>).
33 *
34 * @return {@code true} for inclusion, {@code false} for exclusion, or {@code null} if unspecified.
35 */
36 @UML(identifier="extentTypeCode", obligation=OPTIONAL, specification=ISO_19115)
37 Boolean getInclusion();
38}
Note: See TracBrowser for help on using the repository browser.