⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 graphicsurfaceboundary.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/************************************************************************************************** ** ** $Id: GraphicSurfaceBoundary.java,v 1.5 2004/03/04 15:56:26 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/display/primitive/GraphicSurfaceBoundary.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.display.primitive;import org.opengis.spatialschema.geometry.primitive.SurfaceBoundary;/** * Defines a common abstraction for implementations that drawing the * ISO 19107 Geometric {@link SurfaceBoundary}. * * When a Fill style is applied, any interior rings act as holes, and are not filled. *  * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version $Revision: 1.5 $, $Date: 2004/03/04 15:56:26 $ */public interface GraphicSurfaceBoundary extends Graphic {        /**     * Sets the geometry based on ISO 19107 geometric forms.     *     * @param surfaceBoundary a geometry SurfaceBoundary      */    public void setSurfaceBoundary(SurfaceBoundary surfaceBoundary);        /**     * Returns the geometry based on ISO 19107 geometric forms.     *     * @return the geometry SurfaceBoundary      */    public SurfaceBoundary getSurfaceBoundary();    /**     * Converts the exterior Ring in the underlying SurfaceBoundary      * to a GraphicRing, and returns that GraphicRing.     *     * @return the exterior GraphicRing.     */        public GraphicRing getExterior();    /**     * Converts the GraphicRing to a Ring and sets it as the exterior Ring      * in the underlying SurfaceBoundary.     */    public void setExterior(GraphicRing exterior);        /**     * Converts the interior Rings in the underlying SurfaceBoundary      * to a GraphicRing, and returns that GraphicRing.     *     * @return an array of interior GraphicRings, or null if there are no interior Rings.     */        public GraphicRing[] getInteriors();        /**     * Converts the given <code>GraphicRing</code>s to <code>Ring</code>s and sets them     * as the interior <code>Ring</code>s in the underlying <code>SurfaceBoundary</code>.     * @param interiors an array of interior <code>GraphicRing</code>s.     */                   public void setInteriors(GraphicRing[] interiors);}

⌨️ 快捷键说明

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