com.ibm.jdg2e.msseditor.core
Interface IMiniSSListener

All Known Implementing Classes:
AbstractMiniSSEditor, MiniSSContentProvider, MiniSSOutlineContentProvider

public interface IMiniSSListener

Notification interface between MiniSS and their interested parties.

See Also:
MiniSS.addMiniSpreadsheetListener(IMiniSSListener), MiniSS.removeMiniSpreadsheetListener(IMiniSSListener)

Method Summary
 void rowsChanged(MiniSS miniSpreadsheet)
          Notification of a rows modification; the change is significant enough that a delta is not included in the notification, i.e., the receiver should assume that all rows may have changed.
 void valueChanged(MiniSS miniSpreadsheet, int row, int column, java.lang.String newValue)
          Notification of a cell modification.
 

Method Detail

rowsChanged

public void rowsChanged(MiniSS miniSpreadsheet)
Notification of a rows modification; the change is significant enough that a delta is not included in the notification, i.e., the receiver should assume that all rows may have changed.


valueChanged

public void valueChanged(MiniSS miniSpreadsheet,
                         int row,
                         int column,
                         java.lang.String newValue)
Notification of a cell modification.

Parameters:
miniSpreadsheet - changed MiniSS
row - row index (0-based)
column - column index (0-based)
newValue - new string value of changed cell