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 The classes in this package are in the process of being refactored, for jedit 4.3final. 
 

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
 

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.