📄 aggregationchangeevent.java
字号:
/************************************************************************************************** ** ** $Id: AggregationChangeEvent.java,v 1.4.2.1 2004/05/18 11:20:26 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/display/event/AggregationChangeEvent.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.display.event;/** * Provides a mechanism for notification of additions, removals, and * reorderings of elements in an aggregation. * * @version $Revision: 1.4.2.1 $, $Date: 2004/05/18 11:20:26 $ * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> */public interface AggregationChangeEvent { /** * Flag for one or more elements added to the aggregation. */ public static final int ELEMENT_ADDED = 0; /** * Flag for one or more elements removed from the aggregation. */ public static final int ELEMENT_REMOVED = 1; /** * Flag for the case of the element order changing within the aggregation. */ public static final int ELEMENTS_REORDERD = 2; /** * Get the ID flag for this event. * * @return The event type. One of the {@link #ELEMENT_ADDED}, * {@link #ELEMENT_REMOVED} or {@link #ELEMENTS_REORDERD} * constants. */ public int getID();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -