public interface ColumnListener
extends java.util.EventListener
| Modifier and Type | Method and Description |
|---|---|
void |
columnChanged(Column src,
int idx,
boolean prev)
Notification that a data column has changed.
|
void |
columnChanged(Column src,
int idx,
double prev)
Notification that a data column has changed.
|
void |
columnChanged(Column src,
int idx,
float prev)
Notification that a data column has changed.
|
void |
columnChanged(Column src,
int idx,
int prev)
Notification that a data column has changed.
|
void |
columnChanged(Column src,
int type,
int start,
int end)
Notification that a data column has changed.
|
void |
columnChanged(Column src,
int idx,
long prev)
Notification that a data column has changed.
|
void |
columnChanged(Column src,
int idx,
java.lang.Object prev)
Notification that a data column has changed.
|
void columnChanged(Column src, int type, int start, int end)
src - the column that has changedtype - One of EventConstants.INSERT,
EventConstants.DELETE, or EventConstants.UPDATE.start - the first column index that has been changedend - the last column index that has been changedvoid columnChanged(Column src, int idx, int prev)
src - the column that has changedidx - the column row index that has changedprev - the previous value at the given locationvoid columnChanged(Column src, int idx, long prev)
src - the column that has changedidx - the column row index that has changedprev - the previous value at the given locationvoid columnChanged(Column src, int idx, float prev)
src - the column that has changedidx - the column row index that has changedprev - the previous value at the given locationvoid columnChanged(Column src, int idx, double prev)
src - the column that has changedidx - the column row index that has changedprev - the previous value at the given locationvoid columnChanged(Column src, int idx, boolean prev)
src - the column that has changedidx - the column row index that has changedprev - the previous value at the given locationvoid columnChanged(Column src, int idx, java.lang.Object prev)
src - the column that has changedidx - the column row index that has changedprev - the previous value at the given location