prefuse.data.event
Interface TableListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
DragControl, Graph.Listener, PrefuseTableModel, TreeIndex

public interface TableListener
extends java.util.EventListener

Listener interface for monitoring changes to a table.

Author:
jeffrey heer

Method Summary
 void tableChanged(Table t, int start, int end, int col, int type)
          Notification that a table has changed.
 

Method Detail

tableChanged

void tableChanged(Table t,
                  int start,
                  int end,
                  int col,
                  int type)
Notification that a table has changed.

Parameters:
t - the table that has changed
start - the starting row index of the changed table region
end - the ending row index of the changed table region
col - the column that has changed, or EventConstants.ALL_COLUMNS if the operation affects all columns
type - the type of modification, one of EventConstants.INSERT, EventConstants.DELETE, or EventConstants.UPDATE.


Copyright © 2007 Regents of the University of California