tablelistener.java
来自「用applet实现很多应用小程序」· Java 代码 · 共 28 行
JAVA
28 行
package prefuse.data.event;
import java.util.EventListener;
import prefuse.data.Table;
/**
* Listener interface for monitoring changes to a table.
*
* @author <a href="http://jheer.org">jeffrey heer</a>
*/
public interface TableListener extends EventListener {
/**
* Notification that a table has changed.
* @param t the table that has changed
* @param start the starting row index of the changed table region
* @param end the ending row index of the changed table region
* @param col the column that has changed, or
* {@link EventConstants#ALL_COLUMNS} if the operation affects all
* columns
* @param type the type of modification, one of
* {@link EventConstants#INSERT}, {@link EventConstants#DELETE}, or
* {@link EventConstants#UPDATE}.
*/
public void tableChanged(Table t, int start, int end, int col, int type);
} // end of interface TableListener
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?