Interface PluginListener


public interface PluginListener
Allows for notifications that a plugin has been either created or destroyed.
Author:
Alexander Wenckus
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    pluginCreated(String pluginName, Plugin plugin)
    Called when a plugin has been created.
    void
    pluginDestroyed(String pluginName, Plugin plugin)
    Called when a plugin has been destroyed.
  • Method Details

    • pluginCreated

      void pluginCreated(String pluginName, Plugin plugin)
      Called when a plugin has been created.
      Parameters:
      pluginName - the name of the created plugin.
      plugin - the plugin that was created.
    • pluginDestroyed

      void pluginDestroyed(String pluginName, Plugin plugin)
      Called when a plugin has been destroyed.
      Parameters:
      pluginName - the name of the destroyed plugin.
      plugin - the plugin that was destroyed.