|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ColumnListener
Listener interface for monitoring changes to a data column.
Method Summary | |
---|---|
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. |
Method Detail |
---|
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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |