net.refractions.udig.ui
Interface IFeatureTableLoadingListener


public interface IFeatureTableLoadingListener

A listener that is notified when the FeatureTable begins loading features and stops loading features.

Since:
1.1.0
Author:
Jesse

Method Summary
 void loadingStarted(IProgressMonitor monitor)
          Called when the FeatureTableControl starts loading features.
 void loadingStopped(boolean canceled)
          Called when the loading stops.
 

Method Detail

loadingStarted

void loadingStarted(IProgressMonitor monitor)
Called when the FeatureTableControl starts loading features. The progress monitor is only for cancelling the loading any other method will throw a UnsupportedOperationException

Parameters:
monitor - monitor that is being updated by the job loading the features.

loadingStopped

void loadingStopped(boolean canceled)
Called when the loading stops. Either canceled or finished

Parameters:
canceled - if true the loading was canceled.