| java.lang.Object org.gjt.sp.jedit.ActionContext
ActionContext | abstract public class ActionContext (Code) | | Manages a collection of action sets. There are two instances of this class
in jEdit:
since: jEdit 4.2pre1 author: Slava Pestov version: $Id: ActionContext.java 6884 2006-09-06 02:38:55Z ezust $ |
addActionSet | public void addActionSet(ActionSet actionSet)(Code) | | Adds a new action set to the context.
since: jEdit 4.2pre1 |
getAction | public EditAction getAction(String name)(Code) | | Returns the specified action.
Parameters: name - The action name since: jEdit 4.2pre1 |
getActionNames | public String[] getActionNames()(Code) | | Returns all registered action names.
|
getActionSetForAction | public ActionSet getActionSetForAction(String action)(Code) | | Returns the action set that contains the specified action.
Parameters: action - The action since: jEdit 4.2pre1 |
getActionSets | public ActionSet[] getActionSets()(Code) | | Returns all registered action sets.
since: jEdit 4.2pre1 |
invokeAction | abstract public void invokeAction(EventObject evt, EditAction action)(Code) | | Invokes the given action in response to a user-generated event.
Parameters: evt - The event Parameters: action - The action since: jEdit 4.2pre1 |
removeActionSet | public void removeActionSet(ActionSet actionSet)(Code) | | Removes an action set from the context.
since: jEdit 4.2pre1 |
|
|