Staging
v0.5.0
https://repo1.maven.org/maven2/org/prefuse/prefuse
Raw File
TableListener.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
back to top