Uses of Class
org.java.plugin.Plugin
Packages that use Plugin
Package
Description
This package contains framework runtime API.
This package contains helper classes to start/stop JPF based applications.
This package contains standard implementation of main framework runtime API.
-
Uses of Plugin in org.java.plugin
Methods in org.java.plugin that return PluginModifier and TypeMethodDescriptionabstract Plugin
Looks for plug-in with given ID and activates it if it is not activated yet.abstract Plugin
PluginManager.getPluginFor
(Object obj) Looks for plug-in, given object belongs to.Methods in org.java.plugin with parameters of type PluginModifier and TypeMethodDescriptionprotected final 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 final void
PluginManager.startPlugin
(Plugin plugin) Starts given plug-in.protected final void
PluginManager.stopPlugin
(Plugin plugin) Stops given plug-in. -
Uses of Plugin in org.java.plugin.boot
Subclasses of Plugin in org.java.plugin.bootModifier and TypeClassDescriptionclass
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 PluginModifier and TypeMethodDescriptionprotected 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.Looks for plug-in with given ID and activates it if it is not activated yet.StandardPluginManager.getPluginFor
(Object obj) Looks for plug-in, given object belongs to.Methods in org.java.plugin.standard with parameters of type PluginModifier and TypeMethodDescriptionprotected 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.