collectionlistener.java

来自「本程序是有IBM开发的一个基于数据表格的组件,里面有相关的例子和DOC,本站资料」· Java 代码 · 共 20 行

JAVA
20
字号

package com.ibm.j2x.event;

/**
 * The listener interface for receiving collection events. The class that is 
 * interested in processing a collection event implements this interface, and 
 * the object created with that class is registered with a component, using 
 * the component's addCollectionListener method. When the collection event occurs, 
 * that object's appropriate collection change method is invoked. 
 * @author MAbernethy
 */
public interface CollectionListener
{
	/**
	 * Invoked when an ObservableCollection changes
	 * @param e the CollectionEvent
	 */
	public void collectionChanged(CollectionEvent e);
}

⌨️ 快捷键说明

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