/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2011, Open Source Geospatial Foundation (OSGeo) * (C) 2005, Open Geospatial Consortium Inc. * * All Rights Reserved. http://www.opengis.org/legal/ */ package org.opengis.temporal; import java.util.Collection; import org.opengis.annotation.UML; import static org.opengis.annotation.Obligation.*; import static org.opengis.annotation.Specification.*; /** * An aggregation of connected {@linkplain TemporalTopologicalPrimitive temporal topological * primitives}. This is the only subclass of {@linkplain TemporalComplex temporal complex}. * * @author Alexander Petkov * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/library/opengis/src/main/java/org/opengis/temporal/TemporalTopologicalComplex.java $ */ @UML(identifier="TM_TopologicalComplex", specification=ISO_19108) public interface TemporalTopologicalComplex extends TemporalComplex { /** * The aggregation of connected {@linkplain TemporalTopologicalPrimitive temporal topological * primitives}. * * @todo Missing UML annotation. */ Collection<TemporalTopologicalPrimitive> getTemporalTopologicalPrimitives(); }