Uses of Interface
jsyntaxpane.actions.SyntaxAction

Packages that use SyntaxAction
jsyntaxpane.actions   
 

Uses of SyntaxAction in jsyntaxpane.actions
 

Classes in jsyntaxpane.actions that implement SyntaxAction
 class ComboCompletionAction
          ComboBox like Completion Action: This will display a list of items to choose from, it can be used similar to IntelliSense.
 class CompleteWordAction
          This action will try to complete the word at the cursor by looking for a matching word in this document that starts with the same letters.
 class DefaultSyntaxAction
          The DefaultSyntaxAction.
 class DeleteLinesAction
          This Action deletes the current line, or all the highlighted lines.
 class DuplicateLinesAction
          This Action duplicates the current line, or all the highlighted lines.
 class FindNextAction
          This class performs a Find Next operation by using the current pattern
 class FindReplaceAction
          Finder class.
 class GotoLineAction
          This actions displays the GotoLine dialog
 class HTMLPreviewAction
          Show an HTML Preview window.
 class IndentAction
          IndentAction is used to replace Tabs with spaces.
 class JIndentAction
          This class should be mapped to VK_ENTER.
 class JumpToPairAction
          This actions Jumps to the pair of the token at the cursor.
 class JUnindentAction
           
 class KreatorSwitchToConsoleViewAction
          This actions Jumps to the pair of the token at the cursor.
 class KreatorSwitchToReportViewAction
          This actions Jumps to the pair of the token at the cursor.
 class MapCompletionAction
          Completion Actions: All completions are based on a simple String to String Map.
 class PairAction
          A Pair action inserts a pair of characters (left and right) around the current selection, and then places the caret between them The pairs are hard-coded here.
 class PythonIndentAction
           
 class QuickFindAction
           
 class RedoAction
          Redo action
 class ReflectCompletionAction
          ComboBox like Completion Action: This will display a list of items to choose from, its can be used similar to IntelliSense
 class ScriptAction
          This class executes a script every time it is called.
 class ScriptRunnerAction
          Executes the script in the component's text using a ScriptEngine The Configuration must contain the key [prefix.]ACTION_NAME.ScriptExtension and its value is the ScriptExtension that getEngineByExtension returns If no engine is found, then an option is given to the user to disable the action
 class ShowAbbsAction
          Display all abbreviations for a JTextComponent., if it has any.
 class SmartHomeAction
           
 class SmartHomeSelectAction
           
 class TemplateAction
          This action replaces the selection with the configured template in the config ACTION-NAME.Template There are two kinds of templates: Simple Templates are replaced as is Whole Line Templates will ensure a whole line is selected.
 class ToggleCommentsAction
          This action will toggle comments on or off on selected whole lines.
 class ToggleComponentAction
          This Action will Toggle any SyntaxComponents on the EditorPane You need the configuration Key prefix.ACTION_NAME.Component = componentclassname Where: ACTION_NAME is the name given to the action (prefix.Action.ACTION_NAME) componentclassname is the fully qualified class name of the component
 class UndoAction
          Undo action
 class UnindentAction
          This is usually mapped to Shift-TAB to unindent the selection.
 class XmlPrettifyAction
          Attempt to prettify an XML document.
 class XmlTagCompleteAction
          Completes an the Tag.