Interface PluginListener
-
- All Superinterfaces:
java.util.EventListener
public interface PluginListener extends java.util.EventListener
PluginListeners are notified when plugins are started or stopped by the PluginRegistry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
pluginStarted(PluginEvent e)
Notification that plugin has started.void
pluginStopped(PluginEvent e)
Notification that plugin has stopped.
-
-
-
Method Detail
-
pluginStarted
void pluginStarted(PluginEvent e)
Notification that plugin has started.- Parameters:
e
- event
-
pluginStopped
void pluginStopped(PluginEvent e)
Notification that plugin has stopped.- Parameters:
e
- event
-
-