Uses of Interface
org.jorigin.plugin.IPlugin

Packages that use IPlugin
Package
Description
 
  • Uses of IPlugin in org.jorigin.plugin

    Methods in org.jorigin.plugin that return IPlugin
    Modifier and Type
    Method
    Description
    PluginToolkitEvent.getPlugin()
    Get the plugin attached o this event.
    Methods in org.jorigin.plugin that return types with arguments of type IPlugin
    Modifier and Type
    Method
    Description
    PluginToolkit.loadPlugins()
    Load all plugins available in the locations given to the toolkit.
    Methods in org.jorigin.plugin with parameters of type IPlugin
    Modifier and Type
    Method
    Description
    void
    PluginManagerListener.initAborted(IPlugin plugin, float percentDone)
    This method is called if the initialization task is aborted and is not complete.
    void
    PluginManagerListener.initError(IPlugin plugin, float percentDone)
    This method is called if an error has occurred during the initialization task.
    void
    PluginManagerListener.initProgress(IPlugin plugin, float percentDone)
    This method is called when a progress is made during the initialization of all registered plugins.
    void
    DefaultPluginManager.pluginInit(IPlugin plugin)
     
    void
    IPluginManager.pluginInit(IPlugin plugin)
    Initialize the plugin given in parameter.
    void
    PluginManagerListener.pluginInitializationError(IPlugin plugin)
    This method is called when an error has occurred during the initialization of a plugin by the plugin manager.
    void
    PluginManagerListener.pluginInitialized(IPlugin plugin)
    This method is called when a plugin has been successfully initialized by the plugin manager.
    void
    DefaultPluginManager.pluginRegister(IPlugin plugin)
     
    void
    IPluginManager.pluginRegister(IPlugin plugin)
    Register a plugin to the plugin manager.
    void
    PluginManagerListener.pluginRegistered(IPlugin plugin)
    This method is called when a plugin has been successfully registered by the plugin manager.
    void
    PluginManagerListener.pluginRegistrationError(IPlugin plugin)
    This method is called when an error has occurred during the registration of a plugin by the plugin manager.
    void
    DefaultPluginManager.pluginRestart(IPlugin plugin)
     
    void
    IPluginManager.pluginRestart(IPlugin plugin)
    Restart the plugin given in parameter.
    void
    DefaultPluginManager.pluginStart(IPlugin plugin)
     
    void
    IPluginManager.pluginStart(IPlugin plugin)
    Start the plugin given in parameter.
    void
    PluginManagerListener.pluginStarted(IPlugin plugin)
    This method is called when a plugin has been successfully started by the plugin manager.
    void
    PluginManagerListener.pluginStartError(IPlugin plugin)
    This method is called when an error has occurred during the start of a plugin by the plugin manager.
    void
    DefaultPluginManager.pluginStop(IPlugin plugin)
     
    void
    IPluginManager.pluginStop(IPlugin plugin)
    Stop the plugin given in parameter.
    void
    PluginManagerListener.pluginStopError(IPlugin plugin)
    This method is called when an error has occurred during the stop of a plugin by the plugin manager.
    void
    PluginManagerListener.pluginStopped(IPlugin plugin)
    This method is called when a plugin has been successfully stopped by the plugin manager.
    void
    DefaultPluginManager.pluginUnregister(IPlugin plugin)
     
    void
    IPluginManager.pluginUnregister(IPlugin plugin)
    Unregister the given plugin from the plugin manager
    void
    PluginManagerListener.startAborted(IPlugin plugin, float percentDone)
    This method is called if the start task is aborted and is not complete.
    void
    PluginManagerListener.startProgress(IPlugin plugin, float percentDone)
    This method is called when a progress is made during the start of all registered plugins.
    void
    PluginManagerListener.stopAborted(IPlugin plugin, float percentDone)
    This method is called if the stop task is aborted and is not complete.
    void
    PluginManagerListener.stopProgress(IPlugin plugin, float percentDone)
    This method is called when a progress is made during the stop of all registered plugins.
    Constructors in org.jorigin.plugin with parameters of type IPlugin
    Modifier
    Constructor
    Description
     
    PluginToolkitEvent(Object source, int id, IPlugin plugin, double progress)
    Create a new event with the source and identifier given in parameter.
     
    PluginToolkitEvent(Object source, int id, IPlugin plugin, double progress, double taskSize)
    Create a new event with the source and identifier given in parameter.