aggregationlistener.java
来自「GEo 地理操作源代码」· Java 代码 · 共 33 行
JAVA
33 行
/************************************************************************************************** ** ** $Id: AggregationListener.java,v 1.3 2004/03/02 03:14:41 gregreynolds Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/display/event/AggregationListener.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.display.event;// J2SE direct dependenciesimport java.util.EventListener;/** * Allows an implementing object to listen to element addition, removal, * and ordering changes in an aggregating object. * * @version $Revision: 1.3 $, $Date: 2004/03/02 03:14:41 $ * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> */public interface AggregationListener extends EventListener { /** * Invoked when any elements are added, removed, * or reorderd (if supported) in the aggregating object. * * @param event The aggregation event. */ public void aggregationChanged(AggregationChangeEvent event);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?