|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface TableControllerListener
Event listener interface for TableController
events.
Method Summary | |
---|---|
void |
onNumRowsChanged(int numRows)
Fired when the number of rows changes. |
void |
onRowInserted(int beforeRow)
Fired when a row is inserted. |
void |
onRowRemoved(int row)
Fired when a row is removed. |
void |
onSetData(int row,
int column,
java.lang.Object data)
Fired when the data in a given cell changes. |
void |
onSetData(int firstRow,
java.util.Iterator rows)
Fired when a block of data changes. |
Method Detail |
---|
void onNumRowsChanged(int numRows)
numRows
- the new number of rowsvoid onRowInserted(int beforeRow)
beforeRow
- the row indexvoid onRowRemoved(int row)
row
- the row indexvoid onSetData(int row, int column, java.lang.Object data)
row
- the row indexcolumn
- the column indexdata
- the data to setvoid onSetData(int firstRow, java.util.Iterator rows)
firstRow
- the row indexrows
- the 2D Iterator of data
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |