/*$************************************************************************************************ ** ** $Id$ ** ** $Source: /cvs/ctree/LiteGO1/src/jar/com/polexis/lite/spatialschema/geometry/complex/ComplexBoundaryImpl.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/ package org.geotools.geometry.jts.spatialschema.geometry.complex; // OpenGIS direct dependencies import org.geotools.geometry.jts.spatialschema.geometry.BoundaryImpl; import org.opengis.geometry.complex.ComplexBoundary; /** * The boundary of {@linkplain Complex complex} objects. The * {@link org.opengis.geometry.coordinate.#getBoundary getBoundary()} method for {@link Complex} * objects shall return a {@code ComplexBoundary}, which is a collection of primitives * and a {@linkplain Complex complex} of dimension 1 less than the original object. * * @UML type GM_ComplexBoundary * @author ISO/DIS 19107 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * * * * @source $URL$ * @version 2.0 */ public class ComplexBoundaryImpl extends BoundaryImpl implements ComplexBoundary { }