com.virtuosotechnologies.lib.plugin
Interface FrameworkProgressListener

All Superinterfaces:
EventListener

public interface FrameworkProgressListener
extends EventListener

Listener that is notified of progress of a Framework operation.

Warning: Frameworks are generally not re-entrant, so do not call the Framework from a listener. These events are for information only, and are intended primarily for updating a gui during plugin initialization.


Field Summary
static Method PLUGIN_PROGRESSED_METHOD
          Method object to pass to EventBroadcaster.fireEvent()
 
Method Summary
 void pluginProgressed(FrameworkProgressEvent ev)
          The Framework has made some progress in an operation.
 

Field Detail

PLUGIN_PROGRESSED_METHOD

public static final Method PLUGIN_PROGRESSED_METHOD
Method object to pass to EventBroadcaster.fireEvent()

Method Detail

pluginProgressed

public void pluginProgressed(FrameworkProgressEvent ev)
The Framework has made some progress in an operation. The exact subclass of FrameworkProgressEvent, plus its properties, will give specific information.

Parameters:
ev - a subclass of FrameworkProgressEvent