Package com.gargoylesoftware.base.gui
Interface DelayedComponentLoaderListener
-
public interface DelayedComponentLoaderListenerA listener for DelayedComponentLoader events- Version:
- $Revision: 1.3 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcomponentLoadingFinished(DelayedComponentLoaderEvent event)Called when the loader has finished its work.voidcomponentLoadingStarted(DelayedComponentLoaderEvent event)Called when the loader has started it's work.
-
-
-
Method Detail
-
componentLoadingStarted
void componentLoadingStarted(DelayedComponentLoaderEvent event)
Called when the loader has started it's work. This method will be invoked on the UI thread.- Parameters:
event- The event.
-
componentLoadingFinished
void componentLoadingFinished(DelayedComponentLoaderEvent event)
Called when the loader has finished its work. This method will be invoked on the UI thread.- Parameters:
event- The event.
-
-