Uses of Class
org.java.plugin.Plugin
-
Packages that use Plugin Package Description org.java.plugin This package contains framework runtime API.org.java.plugin.boot This package contains helper classes to start/stop JPF based applications.org.java.plugin.standard This package contains standard implementation of main framework runtime API. -
-
Uses of Plugin in org.java.plugin
Methods in org.java.plugin that return Plugin Modifier and Type Method Description abstract Plugin
PluginManager. getPlugin(java.lang.String id)
Looks for plug-in with given ID and activates it if it is not activated yet.abstract Plugin
PluginManager. getPluginFor(java.lang.Object obj)
Looks for plug-in, given object belongs to.Methods in org.java.plugin with parameters of type Plugin Modifier and Type Method Description protected void
PluginManager. initPlugin(Plugin plugin, PluginDescriptor descr)
Initializes given plug-in with this manager instance and given descriptor.void
PluginManager.EventListener. pluginActivated(Plugin plugin)
This method will be called by the manager just after plug-in has been successfully activated.void
PluginManager.EventListenerAdapter. pluginActivated(Plugin plugin)
void
PluginManager.EventListener. pluginDeactivated(Plugin plugin)
This method will be called by the manager just before plug-in deactivation.void
PluginManager.EventListenerAdapter. pluginDeactivated(Plugin plugin)
protected void
PluginManager. startPlugin(Plugin plugin)
Starts given plug-in.protected void
PluginManager. stopPlugin(Plugin plugin)
Stops given plug-in. -
Uses of Plugin in org.java.plugin.boot
Subclasses of Plugin in org.java.plugin.boot Modifier and Type Class Description class
ApplicationPlugin
This class is for "application" plug-ins - a JPF based program entry point. -
Uses of Plugin in org.java.plugin.standard
Methods in org.java.plugin.standard that return Plugin Modifier and Type Method Description 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.Plugin
StandardPluginManager. getPluginFor(java.lang.Object obj)
Looks for plug-in, given object belongs to.Methods in org.java.plugin.standard with parameters of type Plugin Modifier and Type Method Description protected abstract void
PluginLifecycleHandler. afterPluginStop(Plugin plugin)
This method will be called byPluginManager
just after stopping plug-in.protected void
StandardPluginLifecycleHandler. afterPluginStop(Plugin plugin)
This method does nothing in this implementation.protected abstract void
PluginLifecycleHandler. beforePluginStart(Plugin plugin)
This method will be called byPluginManager
just before starting plug-in.protected void
StandardPluginLifecycleHandler. beforePluginStart(Plugin plugin)
This method does nothing in this implementation.
-