ca.cgjennings.apps.arkham
Interface StrangeEonsApplication.PluginLoadingListener

All Superinterfaces:
java.util.EventListener
Enclosing interface:
StrangeEonsApplication

public static interface StrangeEonsApplication.PluginLoadingListener
extends java.util.EventListener

An interface for listening for plug-in load/unload events.

Since:
2.00a11

Field Summary
static int PLUGIN_LOAD_EVENT
          Event type code that the application has just loaded or reloaded the plug-in set.
static int PLUGIN_UNLOAD_EVENT
          Event type code that the application has just unloaded all loaded plug-ins.
 
Method Summary
 void pluginsLoaded(int eventType)
          Called after the application loads, reloads, or unloads plug-ins.
 

Field Detail

PLUGIN_LOAD_EVENT

static final int PLUGIN_LOAD_EVENT
Event type code that the application has just loaded or reloaded the plug-in set.

See Also:
Constant Field Values

PLUGIN_UNLOAD_EVENT

static final int PLUGIN_UNLOAD_EVENT
Event type code that the application has just unloaded all loaded plug-ins.

See Also:
Constant Field Values
Method Detail

pluginsLoaded

void pluginsLoaded(int eventType)
Called after the application loads, reloads, or unloads plug-ins. The value of eventType describes the type of load event:

PLUGIN_LOAD_EVENT: plug-ins have been loaded (or reloaded) PLUGIN_UNLOAD_EVENT: plug-ins have been unloaded

Parameters:
eventType - the type of load event