public interface GraphListener
extends java.util.EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
graphChanged(Graph g,
java.lang.String table,
int start,
int end,
int col,
int type)
Notification that a graph has changed.
|
void graphChanged(Graph g, java.lang.String table, int start, int end, int col, int type)
g - the graph that has changedtable - the particular table within the graph that has changedstart - the starting row index of the changed table regionend - the ending row index of the changed table regioncol - the column that has changed, or
EventConstants.ALL_COLUMNS if the operation affects all
columnstype - the type of modification, one of
EventConstants.INSERT, EventConstants.DELETE, or
EventConstants.UPDATE.