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

Packages that use JEditActionSet
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.textarea Since jEdit 4.2, many TextArea classes have been split into a base and derived class. 
 

Uses of JEditActionSet in org.gjt.sp.jedit
 

Classes in org.gjt.sp.jedit with type parameters of type JEditActionSet
 class JEditActionContext<F extends JEditAbstractEditAction,E extends JEditActionSet<F>>
          Manages a collection of action sets.
 

Subclasses of JEditActionSet in org.gjt.sp.jedit
 class ActionSet
          A set of actions, either loaded from an XML file, or constructed at runtime by a plugin.
 

Methods in org.gjt.sp.jedit that return JEditActionSet
 E[] JEditActionContext.getActionSets()
          Returns all registered action sets.
 

Uses of JEditActionSet in org.gjt.sp.jedit.textarea
 

Subclasses of JEditActionSet in org.gjt.sp.jedit.textarea
protected static class StandaloneTextArea.StandaloneActionSet
          The actionSet for standalone textArea.
 

Methods in org.gjt.sp.jedit.textarea that return types with arguments of type JEditActionSet
 JEditActionContext<JEditBeanShellAction,JEditActionSet<JEditBeanShellAction>> TextArea.getActionContext()
           
 

Methods in org.gjt.sp.jedit.textarea with parameters of type JEditActionSet
 void TextArea.addActionSet(JEditActionSet<JEditBeanShellAction> actionSet)
          Adds a new action set to the textarea's list of ActionSets.