Interface SpreadSheetTable.ITableCellEditingListener

Enclosing class:
SpreadSheetTable

public static interface SpreadSheetTable.ITableCellEditingListener
Listener on table cell editing events.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    cellValueChanged(int row, int col, String oldValue, String newValue)
    Called whenever the value in a cell has been edited.
  • Method Details

    • cellValueChanged

      void cellValueChanged(int row, int col, String oldValue, 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.