Uses of Class
org.gjt.sp.jedit.ActionSet

Packages that use ActionSet
org.gjt.sp.jedit This package contains jEdit's core classes. 
 

Uses of ActionSet in org.gjt.sp.jedit
 

Methods in org.gjt.sp.jedit that return ActionSet
 ActionSet PluginJAR.getActions()
          Deprecated. Call getActionSet() instead
 ActionSet PluginJAR.getActionSet()
          Returns the plugin's action set for the jEdit action context jEdit.getActionContext().
static ActionSet jEdit.getActionSetForAction(EditAction action)
          Deprecated. Use the form that takes a String instead
static ActionSet jEdit.getActionSetForAction(java.lang.String action)
          Returns the action set that contains the specified action.
 ActionSet ActionContext.getActionSetForAction(java.lang.String action)
          Returns the action set that contains the specified action.
static ActionSet[] jEdit.getActionSets()
          Returns all registered action sets.
 ActionSet[] ActionContext.getActionSets()
          Returns all registered action sets.
 ActionSet PluginJAR.getBrowserActionSet()
          Returns the plugin's action set for the file system browser action context VFSBrowser.getActionContext().
static ActionSet jEdit.getBuiltInActionSet()
          Returns the set of commands built into jEdit.
static ActionSet Macros.getMacroActionSet()
          Returns an action set with all known macros in it.
 

Methods in org.gjt.sp.jedit with parameters of type ActionSet
static void jEdit.addActionSet(ActionSet actionSet)
          Adds a new action set to jEdit's list.
 void ActionContext.addActionSet(ActionSet actionSet)
          Adds a new action set to the context.
static void jEdit.removeActionSet(ActionSet actionSet)
          Removes an action set from jEdit's list.
 void ActionContext.removeActionSet(ActionSet actionSet)
          Removes an action set from the context.