com.droplets.api.event
Interface TableModelListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
Table

public interface TableModelListener
extends java.util.EventListener

This interface is implemented by the Table component in order to listen to data change events coming from the data model.


Method Summary
 void handleDataChanged(TableModelEvent evt)
          Called by the data model to indicate that a CellRectangle of the underlying data has changed.
 void handleRowsDeleted(TableModelEvent evt)
          Called by the data model to indicate that some rows have been deleted.
 void handleRowsInserted(TableModelEvent evt)
          Called by the data model to indicate that some rows have been inserted.
 

Method Detail

handleDataChanged

public void handleDataChanged(TableModelEvent evt)
Called by the data model to indicate that a CellRectangle of the underlying data has changed.

handleRowsDeleted

public void handleRowsDeleted(TableModelEvent evt)
Called by the data model to indicate that some rows have been deleted.

handleRowsInserted

public void handleRowsInserted(TableModelEvent evt)
Called by the data model to indicate that some rows have been inserted.


Copyright © Droplets, 2001. All Rights Reserved.