org.csstudio.swt.widgets.natives
Interface SpreadSheetTable.ITableCellEditingListener

Enclosing class:
SpreadSheetTable

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

cellValueChanged

void cellValueChanged(int row,
                      int col,
                      java.lang.String oldValue,
                      java.lang.String newValue)
Called whenever the value in a cell has been edited.

Parameters:
row - index of the row
col - index of the column
oldValue - old value in the cell
newValue - new value in the cell.