org.gudy.azureus2.plugins
Interface PluginEvent


public interface PluginEvent

allow config wizard progress to be determined

Since:
2.0.8.0
Author:
parg

Field Summary
static int PEV_ALL_PLUGINS_INITIALISED
          This event is triggered when all plugins have had their 'initialize' method called on startup.
static int PEV_CONFIGURATION_WIZARD_COMPLETES
           
static int PEV_CONFIGURATION_WIZARD_STARTS
           
static int PEV_FIRST_USER_EVENT
          Plugin specific events can be raised by a plugin to communicate with other components.
static int PEV_INITIAL_SHARING_COMPLETE
           
static int PEV_INITIALISATION_PROGRESS_PERCENT
           
static int PEV_INITIALISATION_PROGRESS_TASK
           
static int PEV_INITIALISATION_UI_COMPLETES
          Triggered when UI Initialization is complete.
 
Method Summary
 int getType()
           
 java.lang.Object getValue()
           
 

Field Detail

PEV_CONFIGURATION_WIZARD_STARTS

static final int PEV_CONFIGURATION_WIZARD_STARTS
See Also:
Constant Field Values

PEV_CONFIGURATION_WIZARD_COMPLETES

static final int PEV_CONFIGURATION_WIZARD_COMPLETES
See Also:
Constant Field Values

PEV_INITIALISATION_PROGRESS_TASK

static final int PEV_INITIALISATION_PROGRESS_TASK
See Also:
Constant Field Values

PEV_INITIALISATION_PROGRESS_PERCENT

static final int PEV_INITIALISATION_PROGRESS_PERCENT
See Also:
Constant Field Values

PEV_INITIAL_SHARING_COMPLETE

static final int PEV_INITIAL_SHARING_COMPLETE
Since:
2403
See Also:
Constant Field Values

PEV_INITIALISATION_UI_COMPLETES

static final int PEV_INITIALISATION_UI_COMPLETES
Triggered when UI Initialization is complete. This is after the UI is attached. This trigger is helpful if you need access to an UI element from a plugin after you in the UI attachment order.

Since:
2403
See Also:
Constant Field Values

PEV_ALL_PLUGINS_INITIALISED

static final int PEV_ALL_PLUGINS_INITIALISED
This event is triggered when all plugins have had their 'initialize' method called on startup. This differs from the 'initialisationComplete' callback on PluginListener in that it is *guranteed* to be triggered before any other initialisation actions take place.

See Also:
Constant Field Values

PEV_FIRST_USER_EVENT

static final int PEV_FIRST_USER_EVENT
Plugin specific events can be raised by a plugin to communicate with other components. The event type must start from the number below

See Also:
Constant Field Values
Method Detail

getType

int getType()

getValue

java.lang.Object getValue()