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