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

📄 tablelistener.java

📁 用applet实现很多应用小程序
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -