📄 composite.java
字号:
/*$************************************************************************************************ ** ** $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® 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -