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

📄 orderedaggregategraphic.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/************************************************************************************************** ** ** $Id: OrderedAggregateGraphic.java,v 1.2 2004/03/02 03:14:41 gregreynolds Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/display/primitive/OrderedAggregateGraphic.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.display.primitive;/** * Extends the <code>AggregateGraphic</code> interface to add the ability for the user * to specify a stacking order or Z-order.  When the objects contained in this aggregate * are drawn, they should be drawn in the order they appear in the list of children, * starting with index 0. *  * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version $Revision: 1.2 $, $Date: 2004/03/02 03:14:41 $ */public interface OrderedAggregateGraphic extends AggregateGraphic {    /**     * Adds a child into this aggregate, inserting it before the child     * at the given index.  The existing child at the given index and     * all those with a larger index have their index increased by one.     *     * @param index Index where the new child will be added.     * @param child New child Graphic to add.     * @return Returns the child just added.     */    public Graphic insertChild(int index, Graphic child);    /**     * Retrieves the child Graphic at the given index.     */    public Graphic getChild(int index);    /**     * Removes the child at the given index.     *     * @return Returns the child just removed.     */    public Graphic removeChild(int index);}

⌨️ 快捷键说明

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