Package docking.widgets.table.threaded
Interface ThreadedTableModelListener
- All Known Implementing Classes:
IncrementalLoadJob
,ThreadedTableModelListenerAdapter
public interface ThreadedTableModelListener
A listener to be notified of
ThreadedTableModel
loading changes.-
Method Summary
Modifier and TypeMethodDescriptionvoid
loadingFinished
(boolean wasCancelled) Called when the table is done loading data.void
Called when the table begins to load new data.void
Called when the model has new data to be loaded, but has not yet started the load process.
-
Method Details
-
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.
-