public static interface SpreadSheetTable.ITableCellEditingListener
Listener on table cell editing events.
Method Summary | |
---|---|
void |
cellValueChanged(int row,
int col,
java.lang.String oldValue,
java.lang.String newValue)
Called whenever the value in a cell has been edited. |
Method Detail |
---|
void cellValueChanged(int row, int col, java.lang.String oldValue, java.lang.String newValue)
row
- index of the rowcol
- index of the columnoldValue
- old value in the cellnewValue
- new value in the cell.