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

📄 collectionlistener.java

📁 本程序是有IBM开发的一个基于数据表格的组件,里面有相关的例子和DOC,本站资料仅为大家学习之用
💻 JAVA
字号:

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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -