Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

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

Uses of ActionSet in org.gjt.sp.jedit
 

Fields in org.gjt.sp.jedit declared as ActionSet
private  ActionSet PluginJAR.actions
           
private  ActionSet PluginJAR.browserActions
           
private static ActionSet jEdit.builtInActionSet
           
private static ActionSet Macros.macroActionSet
           
private  ActionSet ActionListHandler.actionSet
           
 

Methods in org.gjt.sp.jedit that return ActionSet
 ActionSet[] ActionContext.getActionSets()
          Returns all registered action sets.
 ActionSet ActionContext.getActionSetForAction(java.lang.String action)
          Returns the action set that contains the specified action.
 ActionSet PluginJAR.getActions()
          Deprecated. Call getActionSet() instead
 ActionSet PluginJAR.getActionSet()
          Returns the plugin's action set for the jEdit action context jEdit.getActionContext() 55 .
 ActionSet PluginJAR.getBrowserActionSet()
          Returns the plugin's action set for the file system browser action context VFSBrowser.getActionContext()>VFSBrowser.getActionContext() 55 .
static ActionSet jEdit.getBuiltInActionSet()
          Returns the set of commands built into jEdit.
static ActionSet[] jEdit.getActionSets()
          Returns all registered action sets.
static ActionSet jEdit.getActionSetForAction(java.lang.String action)
          Returns the action set that contains the specified action.
static ActionSet jEdit.getActionSetForAction(EditAction action)
          Deprecated. Use the form that takes a String instead
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
 void ActionContext.addActionSet(ActionSet actionSet)
          Adds a new action set to the context.
 void ActionContext.removeActionSet(ActionSet actionSet)
          Removes an action set from the context.
static void jEdit.addActionSet(ActionSet actionSet)
          Adds a new action set to jEdit's list.
static void jEdit.removeActionSet(ActionSet actionSet)
          Removes an action set from jEdit's list.
 

Constructors in org.gjt.sp.jedit with parameters of type ActionSet
ActionListHandler(java.lang.String path, ActionSet actionSet)