Package docking.widgets.table.threaded
Interface ThreadedTableModelListener
-
- All Known Implementing Classes:
IncrementalLoadJob
public interface ThreadedTableModelListener
A listener to be notified ofThreadedTableModel
loading changes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
loadingFinished(boolean wasCancelled)
Called when the table is done loading data.void
loadingStarted()
Called when the table begins to load new data.void
loadPending()
Called when the model has new data to be loaded, but has not yet started the load process.
-
-
-
Method Detail
-
loadPending
void loadPending()
Called when the model has new data to be loaded, but has not yet started the load process.
-
loadingStarted
void loadingStarted()
Called when the table begins to load new data.
-
loadingFinished
void loadingFinished(boolean wasCancelled)
Called when the table is done loading data.- Parameters:
wasCancelled
- true if the load was cancelled.
-
-