projectionlistener.java
来自「用applet实现很多应用小程序」· Java 代码 · 共 22 行
JAVA
22 行
package prefuse.data.event;
import java.util.EventListener;
import prefuse.data.util.ColumnProjection;
/**
* Listener interface for monitoring changes to the state of a
* column projection filter.
*
* @author <a href="http://jheer.org">jeffrey heer</a>
*/
public interface ProjectionListener extends EventListener {
/**
* Notification that the internal state of a projection has been updated.
* @param projection the source of the change notification
*/
public void projectionChanged(ColumnProjection projection);
} // end of interface ProjectionListener
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?