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

Packages that use EditAction
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.gui Various GUI controls and dialog boxes. 
 

Uses of EditAction in org.gjt.sp.jedit
 

Subclasses of EditAction in org.gjt.sp.jedit
 class BeanShellAction
          An action that evaluates BeanShell code when invoked.
static class Macros.Macro
          Encapsulates the macro's label, name and path.
 

Methods in org.gjt.sp.jedit that return EditAction
protected  EditAction ActionSet.createBeanShellAction(java.lang.String actionName, java.lang.String code, java.lang.String selected, boolean noRepeat, boolean noRecord, boolean noRememberLast)
          Creates a BeanShellAction.
static EditAction jEdit.getAction(java.lang.String name)
          Returns the specified action.
 EditAction ActionContext.getAction(java.lang.String name)
          Returns the specified action.
static EditAction[] jEdit.getActions()
          Deprecated. Call getActionNames() instead
 EditAction[] ActionSet.getActions()
          Returns an array of all actions in this action set.
protected  EditAction[] ActionSet.getArray(int size)
           
 

Methods in org.gjt.sp.jedit with parameters of type EditAction
 void ActionSet.addAction(EditAction action)
          Adds an action to the action set.
static ActionSet jEdit.getActionSetForAction(EditAction action)
          Deprecated. Use the form that takes a String instead
static javax.swing.JMenuItem GUIUtilities.loadMenuItem(EditAction editAction, boolean setMnemonic)
           
 

Uses of EditAction in org.gjt.sp.jedit.gui
 

Methods in org.gjt.sp.jedit.gui that return EditAction
 EditAction InputHandler.getLastAction()
          Returns the last executed action.
 

Methods in org.gjt.sp.jedit.gui with parameters of type EditAction
 void InputHandler.invokeAction(EditAction action)
          Invokes the specified action, repeating and recording it as necessary.