📄 collectionlistener.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 + -