Uses of Class
org.java.plugin.PluginLifecycleException
-
Packages that use PluginLifecycleException Package Description org.java.plugin This package contains framework runtime API.org.java.plugin.standard This package contains standard implementation of main framework runtime API. -
-
Uses of PluginLifecycleException in org.java.plugin
Methods in org.java.plugin that throw PluginLifecycleException Modifier and Type Method Description abstract void
PluginManager. activatePlugin(java.lang.String id)
Activates plug-in with given ID if it is not activated yet.abstract Plugin
PluginManager. getPlugin(java.lang.String id)
Looks for plug-in with given ID and activates it if it is not activated yet. -
Uses of PluginLifecycleException in org.java.plugin.standard
Methods in org.java.plugin.standard that throw PluginLifecycleException Modifier and Type Method Description void
StandardPluginManager. activatePlugin(java.lang.String id)
Activates plug-in with given ID if it is not activated yet.protected abstract void
PluginLifecycleHandler. afterPluginStop(Plugin plugin)
This method will be called byPluginManager
just after stopping plug-in.protected abstract void
PluginLifecycleHandler. beforePluginStart(Plugin plugin)
This method will be called byPluginManager
just before starting plug-in.protected abstract Plugin
PluginLifecycleHandler. createPluginInstance(PluginDescriptor descr)
This method should create new instance of plug-in class.protected Plugin
StandardPluginLifecycleHandler. createPluginInstance(PluginDescriptor descr)
Creates instance of plug-in class calling it's default (no-arguments) constructor.Plugin
StandardPluginManager. getPlugin(java.lang.String id)
Looks for plug-in with given ID and activates it if it is not activated yet.
-