Package docking.widgets.table.threaded
Interface ThreadedTableModelListener
- 
- All Known Implementing Classes:
- IncrementalLoadJob
 
 public interface ThreadedTableModelListenerA listener to be notified ofThreadedTableModelloading changes.
- 
- 
Method SummaryAll 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- 
loadPendingvoid loadPending() Called when the model has new data to be loaded, but has not yet started the load process.
 - 
loadingStartedvoid loadingStarted() Called when the table begins to load new data.
 - 
loadingFinishedvoid loadingFinished(boolean wasCancelled) Called when the table is done loading data.- Parameters:
- wasCancelled- true if the load was cancelled.
 
 
- 
 
-