Interface PluginListener
public interface PluginListener
Allows for notifications that a plugin has been either created or destroyed.
- Author:
- Alexander Wenckus
-
Method Summary
Modifier and TypeMethodDescriptionvoidpluginCreated(String pluginName, Plugin plugin) Called when a plugin has been created.voidpluginDestroyed(String pluginName, Plugin plugin) Called when a plugin has been destroyed.
-
Method Details
-
pluginCreated
Called when a plugin has been created.- Parameters:
pluginName- the name of the created plugin.plugin- the plugin that was created.
-
pluginDestroyed
Called when a plugin has been destroyed.- Parameters:
pluginName- the name of the destroyed plugin.plugin- the plugin that was destroyed.
-