Uses of Interface
ca.cgjennings.apps.arkham.plugins.PluginContext
- 
Packages that use PluginContext Package Description ca.cgjennings.apps.arkham.dialog.prefs ca.cgjennings.apps.arkham.plugins  - 
- 
Uses of PluginContext in ca.cgjennings.apps.arkham.dialog.prefs
Constructors in ca.cgjennings.apps.arkham.dialog.prefs with parameters of type PluginContext Constructor Description FillInPreferenceCategory(PluginContext context, java.lang.String title, java.awt.image.BufferedImage iconImage)Create a new preferences panel that will use decorated settings keys that are unique to a given plug-in.FillInPreferenceCategory(PluginContext context, java.lang.String title, java.lang.String iconResource)Create a new preferences panel that will use decorated settings keys that are unique to a given plug-in.FillInPreferenceCategory(PluginContext context, java.lang.String title, javax.swing.Icon icon)Create a new preferences panel that will use decorated settings keys that are unique to a given plug-in. - 
Uses of PluginContext in ca.cgjennings.apps.arkham.plugins
Methods in ca.cgjennings.apps.arkham.plugins that return PluginContext Modifier and Type Method Description static PluginContextPluginContextFactory. createContext(AbstractInstalledPlugin ip, int modifiers)Creates a plug-in context for the plug-in currently managed by the specified installed plug-in instance.static PluginContextPluginContextFactory. createContext(Plugin plugin, int modifiers)Creates a context for a plug-in.static PluginContextPluginContextFactory. createDummyContext()Returns a dummy context.static PluginContextPluginContextFactory. createDummyContext(int modifiers)Returns a dummy context.static PluginContextPluginContextFactory. createProbeContext(AbstractInstalledPlugin ip, Plugin p)Creates a plug-in context suitable for probing the plug-in currently managed by the specified installed plug-in instance.static PluginContextPluginContextFactory. createProbeContext(Plugin plugin)Creates a context suitable for probing a plug-in.Methods in ca.cgjennings.apps.arkham.plugins with parameters of type PluginContext Modifier and Type Method Description voidScriptMonkey. bind(PluginContext pluginContext)Binds the specifiedPluginContextto the global scope.booleanAbstractPlugin. initializePlugin(PluginContext context)This method will be called once for each registered plug-in before any other methods are called.booleanDefaultScriptedPlugin. initializePlugin(PluginContext context)Scripted Plug-in Notes: The script will be evaluated (so any code with global scope will be run).booleanPlugin. initializePlugin(PluginContext context)This method will be called once for each registered plug-in before any other methods are called.booleanQuickscriptPlugin. initializePlugin(PluginContext context)voidAbstractPlugin. showPlugin(PluginContext context, boolean show)Show (activate) or hide (deactivate) the plug-in.voidDefaultScriptedPlugin. showPlugin(PluginContext context, boolean show)Scripted Plug-in Notes: If called withshow == true, calls the script'srun()function, if any.voidPlugin. showPlugin(PluginContext context, boolean show)Show (activate) or hide (deactivate) the plug-in.voidQuickscriptPlugin. showPlugin(PluginContext context, boolean show) 
 -