Package docking.widgets.table.threaded
Interface ThreadedTableModelListener
-
- All Known Implementing Classes:
IncrementalLoadJob
public interface ThreadedTableModelListenerA listener to be notified ofThreadedTableModelloading changes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidloadingFinished(boolean wasCancelled)Called when the table is done loading data.voidloadingStarted()Called when the table begins to load new data.voidloadPending()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.
-
-