composite.java

来自「GEo 地理操作源代码」· Java 代码 · 共 44 行

JAVA
44
字号
/*$************************************************************************************************ ** ** $Id: Composite.java,v 1.6 2004/03/19 04:11:44 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/spatialschema/geometry/complex/Composite.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.spatialschema.geometry.complex;// J2SE direct dependenciesimport java.util.List;// OpenGIS direct dependenciesimport org.opengis.spatialschema.geometry.primitive.Primitive;/** * A geometric complex with an underlying core geometry that is isomorphic to a primitive. Thus, * a composite curve is a collection of curves whose geometry interface could be satisfied by a * single curve (albeit a much more complex one). Composites are intended for use as attribute * values in datasets in which the underlying geometry has been decomposed, usually to expose its * topological nature. * * @UML type GM_Composite * @author ISO/DIS 19107 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version 2.0 */public interface Composite extends Complex {    /**     * Returns a homogeneous collection of {@linkplain Primitive primitives} whose union would be     * the core geometry of the composite. The complex would include all primitives in the generator     * and all primitives on the boundary of these primitives, and so forth until     * {@linkplain org.opengis.spatialschema.geometry.primitive.Point points} are included. Thus the     * <code>generators</code> on <code>Composite</code> is a subset of the     * {@linkplain Complex#getElements elements} on {@linkplain Complex complex}.     *     * @return The list of primitives in this composite.     * @UML association generator     */    public List getGenerators();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?