Extension SDK 10.1.3.36.73

oracle.javatools.editor
Class ActionNames

java.lang.Object
  extended byoracle.javatools.editor.ActionNames

public final class ActionNames
extends java.lang.Object

The ActionNames class defines all the actions known to the editor component and mappable in the various keymappings. For now, all actions must be defined by this class. Some work will be deferred to the future to make this list of names extensible.

Note that the editor kit and editor pane operate on internal names of the actions, those defined by the constants in this file, such as "cut-to-clipboard". They will not work if you try to invoke them with the translated name of the action.


Field Summary
static java.lang.String BEEP
          BeepAction Name of the action to create a beep.
static java.lang.String BLOCK_INDENT
          BlockIndentAction Name of the action for performing a block indent.
static java.lang.String BLOCK_OUTDENT
          BlockOutdentAction Name of the action for performing a block outdent.
static java.lang.String CANCEL
          CancelAction Name of the action for cancelling an operation in progress.
static java.lang.String CARET_BACKWARD
          BackwardAction Name of the action for moving the caret logically backward one position.
static java.lang.String CARET_BEGIN
          BeginAction Name of the action for moving the caret to the begining of the document.
static java.lang.String CARET_BEGIN_LINE
          BeginLineAction Name of the action for moving the caret to the begining of a line.
static java.lang.String CARET_BEGIN_PARAGRAPH
          BeginParagraphAction Name of the action for moving the caret to the begining of a paragraph.
static java.lang.String CARET_BEGIN_WORD
          BeginWordAction Name of the action for moving the caret to the begining of a word.
static java.lang.String CARET_DOWN
          DownAction Name of the action for moving the caret logically downward one position.
static java.lang.String CARET_END
          EndAction Name of the action for moving the caret to the end of the document.
static java.lang.String CARET_END_LINE
          EndLineAction Name of the action for moving the caret to the end of a line.
static java.lang.String CARET_END_PARAGRAPH
          EndParagraphAction Name of the action for moving the caret to the end of a paragraph.
static java.lang.String CARET_END_WORD
          EndWordAction Name of the action for moving the caret to the end of a word.
static java.lang.String CARET_FORWARD
          ForwardAction Name of the action for moving the caret logically forward one position.
static java.lang.String CARET_NEXT_WORD_BREAK
          NextWordAction Name of the action for moving the caret to the next word break, which can be either the start or end of a word.
static java.lang.String CARET_NEXT_WORD_END
          NextWordAction Name of the action for moving the caret to the next occurrence of a word end.
static java.lang.String CARET_NEXT_WORD_START
          NextWordAction Name of the action for moving the caret to the next occurrence of a word start.
static java.lang.String CARET_PREVIOUS_WORD_BREAK
          PreviousWordAction Name of the action for moving the caret to the previous word break, which can be either the start or end of a word.
static java.lang.String CARET_PREVIOUS_WORD_END
          PreviousWordAction Name of the action for moving the caret to the previous occurrence of a word end.
static java.lang.String CARET_PREVIOUS_WORD_START
          PreviousWordAction Name of the action for moving the caret to the previous occurrence of a word start.
static java.lang.String CARET_UP
          UpAction Name of the action for moving the caret logically upward one position.
static java.lang.String COMPLETION_INSIGHT
          CompletionInsight Name of the action for invoking completion insight assistance.
static java.lang.String CONVERT_SELECTION_DOWNCASE
          ConvertSelectionCaseAction Name of the action for converting the entire selection to lowercase.
static java.lang.String CONVERT_SELECTION_UPCASE
          ConvertSelectionCaseAction Name of the action for converting the entire selection to uppercase.
static java.lang.String COPY_TO_CLIPBOARD
          CopyAction Name of the action to copy the selected region and place the contents into the system clipboard.
static java.lang.String CUT_TO_CLIPBOARD
          CutAction Name of the action to cut the selected region and place the contents into the system clipboard.
static java.lang.String DEFAULT_KEY_TYPED
          DefaultKeyTypedAction Name of the action that is executed by default if a key typed event is received and there is no keymap entry.
static java.lang.String DELETE_LINE
          DeleteLineAction Name of the action for deleting the line the caret is currently on.
static java.lang.String DELETE_NEXT
          DeleteNextCharAction Name of the action to delete the character of content that follows the current caret position.
static java.lang.String DELETE_NEXT_WORD_BREAK
          DeleteNextWordAction Name of the action for deleting from cursor position until the next word break, which can be either the start or end of a word.
static java.lang.String DELETE_NEXT_WORD_END
          DeleteNextWordAction Name of the action for deleting from cursor position until the next occurrence of a word end.
static java.lang.String DELETE_NEXT_WORD_START
          DeleteUntilNextWordAction Name of the action for deleting from cursor position until the next occurrence of a word start.
static java.lang.String DELETE_PREVIOUS
          DeletePrevCharAction Name of the action to delete the character of content that precedes the current caret position.
static java.lang.String DELETE_PREVIOUS_WORD_BREAK
          DeletePreviousWordAction Name of the action for deleting from cursor position until the previous word break, which can be either the start or end of a word.
static java.lang.String DELETE_PREVIOUS_WORD_END
          DeletePreviousWordAction Name of the action for deleting from cursor position until the previous occurrence of a word end.
static java.lang.String DELETE_PREVIOUS_WORD_START
          DeletePreviousWordAction Name of the action for deleting from cursor position until the previous occurrence of a word start.
static java.lang.String DELETE_UNTIL_EOL
          DeleteUntilEOLAction Name of the action for deleting from cursor position until the end of line.
static java.lang.String EMACS_APPEND_NEXT_KILL
          EmacsAppendNextKillAction Name of the action which sets the editor into a mode where if the next command is a kill, it will append into the kill-ring.
static java.lang.String EMACS_BACKWARD_KILL_WORD
          EmacsBackwardKillWordAction Name of the action for killing until the previous start of a word and adding or prepending it to the Emacs kill ring.
static java.lang.String EMACS_CAPITALIZE_WORD
          CapitalizeWordAction Name of the action for capitalizing the next non-whitespace character, and converting to the next end of a word to all lowercase.
static java.lang.String EMACS_CARET_BEGIN
          EmacsBeginAction Name of the action for marking the current caret position, and moving the caret to the start of the buffer.
static java.lang.String EMACS_CARET_END
          EmacsEndAction Name of the action for marking the current caret position, and moving the caret to the end of the buffer.
static java.lang.String EMACS_DELETE_HORIZONTAL_SPACE
          EmacsDeleteHorizontalSpaceAction Name of the action for deleting all spaces and tabs surrounding the current cursor position.
static java.lang.String EMACS_DOWNCASE_REGION
          EmacsCaseRegionAction Name of the action for converting the region to all lowercase.
static java.lang.String EMACS_DOWNCASE_WORD
          EmacsDowncaseWordAction Name of the action for converting from the current position to the next end of a word to all lowercase.
static java.lang.String EMACS_EXCHANGE_POINT_MARK
          EmacsExchangePointMarkAction Name of the action for exchanging the point (current caret position) and an Emacs-style mark in the editor.
static java.lang.String EMACS_KILL_LINE
          EmacsKillLineAction Name of the action for killing the line and adding or appending it to the Emacs kill ring.
static java.lang.String EMACS_KILL_REGION
          EmacsKillRegionAction Name of the action for killing the region between the point and mark and adding or appending it to the Emacs kill ring.
static java.lang.String EMACS_KILL_RING_SAVE
          EmacsKillRegionAction Name of the action for copying the region between the point and mark and adding or appending it into the Emacs kill ring.
static java.lang.String EMACS_KILL_SENTENCE
           
static java.lang.String EMACS_KILL_WORD
          EmacsKillWordAction Name of the action for killing until the next start of a word and adding or appending it to the Emacs kill ring.
static java.lang.String EMACS_MARK_PARAGRAPH
           
static java.lang.String EMACS_MARK_WHOLE_BUFFER
          EmacsMarkBufferAction Name of the action for marking the end of the buffer, and moving the caret to the start of the buffer.
static java.lang.String EMACS_MARK_WORD
           
static java.lang.String EMACS_SET_MARK
          EmacsSetMarkAction Name of the action for setting an Emacs-style mark in the editor.
static java.lang.String EMACS_UPCASE_REGION
          EmacsCaseRegionAction Name of the action for converting the region to all uppercase.
static java.lang.String EMACS_UPCASE_WORD
          EmacsUpcaseWordAction Name of the action for converting from the current position to the next end of a word to all lowercase.
static java.lang.String EMACS_YANK
          EmacsYankAction Name of the action for yanking the text from the kill-ring.
static java.lang.String EMACS_YANK_POP
          EmacsYankAction Name of the action for popping the text from the kill-ring.
static java.lang.String EXTENDED_PASTE_FROM_CLIPBOARD
          ExtendedPasteAction Name of the action to paste the contents of stacked clipboard into the selected region, or before the caret if nothing is selected.
static java.lang.String GOTO_MATCHING_BRACE
          GotoMatchingBraceAction Name of the action to move the cursor to the matching brace (if brace matching is available.)
static java.lang.String INSERT_BREAK
          InsertBreakAction Name of the action to place a line/paragraph break into the document.
static java.lang.String INSERT_TAB
          InsertTabAction Name of the action to place a tab character into the document.
static java.lang.String OPEN_LINE
          OpenLineAction Name of the action for inserting a new line to the right of the current caret position.
static java.lang.String PAGE_DOWN
          PageDownAction Name of the action to page down vertically.
static java.lang.String PAGE_UP
          PageUpAction Name of the action to page up vertically.
static java.lang.String PASTE_FROM_CLIPBOARD
          PasteAction Name of the action to paste the contents of the system clipboard into the selected region, or before the caret if nothing is selected.
static java.lang.String PLAYBACK_MACRO
          MacroRecorderAction Name of the action for starting playback of a recorded macro.
static java.lang.String RECENTER_LINE
          RecenterLineAction Name of the action for recentering the line the caret is on vertically on screen.
static java.lang.String REVERSE_TAB
          ReverseTabAction Name of the action to move the caret backwards to the previous tab stop.
static java.lang.String SCROLL_LINE_DOWN
          ScrollLineDownAction Name of the action for scrolling the window down by one line (which moves the content upwards.)
static java.lang.String SCROLL_LINE_UP
          ScrollLineUpAction Name of the action for scrolling the window up by one line (which moves the content downwards.)
static java.lang.String SCROLL_PAGE_DOWN
          ScrollPageDownAction Name of the action for scrolling the window down by one page (moving content up.)
static java.lang.String SCROLL_PAGE_UP
          ScrollPageUpAction Name of the action for scrolling the window up by one page (moving content down.)
static java.lang.String SELECT_ALL
          SelectAllAction Name of the action for selecting the entire document.
static java.lang.String SELECT_LINE
          SelectLineAction Name of the action for selecting a line around the caret.
static java.lang.String SELECT_PARAGRAPH
          SelectParagraphAction Name of the action for selecting a paragraph around the caret.
static java.lang.String SELECT_WORD
          SelectWordAction Name of the action for selecting a word around the caret.
static java.lang.String SELECTION_BACKWARD
          BackwordAction Name of the action for extending the selection by moving the caret logically backward one position.
static java.lang.String SELECTION_BEGIN
          BeginAction Name of the action for moving the caret to the begining of the document, extending the selection.
static java.lang.String SELECTION_BEGIN_LINE
          BeginLineAction Name of the action for moving the caret to the begining of a line, extending the selection.
static java.lang.String SELECTION_BEGIN_PARAGRAPH
          BeginParagraphAction Name of the action for moving the caret to the begining of a paragraph, extending the selection.
static java.lang.String SELECTION_BEGIN_WORD
          BeginWordAction Name of the action for moving the caret to the begining of a word, extending the selection.
static java.lang.String SELECTION_DOWN
          DownAction Name of the action for moving the caret logically downward one position, extending the selection.
static java.lang.String SELECTION_END
          EndAction Name of the action for moving the caret to the end of the document, extending the selection.
static java.lang.String SELECTION_END_LINE
          EndLineAction Name of the action for moving the caret to the end of a line, extending the selection.
static java.lang.String SELECTION_END_PARAGRAPH
          EndParagraphAction Name of the action for moving the caret to the end of a paragraph, extending the selection.
static java.lang.String SELECTION_END_WORD
          EndWordAction Name of the action for moving the caret to the end of a word, extending the selection.
static java.lang.String SELECTION_FORWARD
          ForwardAction Name of the action for extending the selection by moving the caret logically forward one position.
static java.lang.String SELECTION_MATCHING_BRACE
          SelectionMatchingBraceAction Name of the action to select text to the matching brace (if brace matching is available.)
static java.lang.String SELECTION_NEXT_WORD_BREAK
          NextWordAction Name of the action for moving the selection to the next word break, which can be either the start or end of a word.
static java.lang.String SELECTION_NEXT_WORD_END
          NextWordAction Name of the action for moving the selection to the next occurrence of a word end, extending the selection.
static java.lang.String SELECTION_NEXT_WORD_START
          NextWordAction Name of the action for moving the selection to the next occurrence of a word start, extending the selection.
static java.lang.String SELECTION_PAGE_DOWN
          PageDownAction Name of the action to page down vertically, and move the selection.
static java.lang.String SELECTION_PAGE_LEFT
          PageLeftAction Name of the action to page left horizontally, and move the selection.
static java.lang.String SELECTION_PAGE_RIGHT
          PageRightAction Name of the action to page right horizontally, and move the selection.
static java.lang.String SELECTION_PAGE_UP
          PageUpAction Name of the action to page up vertically, and move the selection.
static java.lang.String SELECTION_PREVIOUS_WORD_BREAK
          PreviousWordAction Name of the action for moving the selection to the previous word break, which can be either the start or end of a word.
static java.lang.String SELECTION_PREVIOUS_WORD_END
          PreviousWordAction Name of the action for moving the selection to the previous occurrence of a word end, extending the selection.
static java.lang.String SELECTION_PREVIOUS_WORD_START
          PreviousWordAction Name of the action for moving the selection to the previous occurrence of a word start, extending the selection.
static java.lang.String SELECTION_UP
          UpAction Name of the action for moving the caret logically upward one position, extending the selection.
static java.lang.String SET_LOCAL_TABSIZE2
          SetLocalTabSizeAction Name of the action to set the tab size of the current editor locally to 2.
static java.lang.String SET_LOCAL_TABSIZE4
          SetLocalTabSizeAction Name of the action to set the tab size of the current editor locally to 4.
static java.lang.String SET_LOCAL_TABSIZE8
          SetLocalTabSizeAction Name of the action to set the tab size of the current editor locally to 8.
static java.lang.String SET_READ_ONLY
          ReadOnlyAction Name of the action to set the editor into read-only mode.
static java.lang.String SET_WRITABLE
          WritableAction Name of the action to set the editor into writeable mode.
static java.lang.String SHOW_MATCHING_BRACES
          ShowMatchingBraces Name of the action for manually requesting a matching brace match.
static java.lang.String SMART_COMPLETION_INSIGHT
          CompletionInsight Name of the action for invoking completion insight assistance.
static java.lang.String SORT_SELECTED_LINES
          SortSelectedLinesAction Name of the action to sort the selected lines.
static java.lang.String TABIFY
          TabifyAction Name of the action for converting leading spaces of a line to tabs if possible, preserving the ending column of the first non-whitespace of the line.
static java.lang.String TOGGLE_COMMENTS
          ToggleCommentsAction Name of the action for toggling the current line or selected lines between commented or uncommented using the language's single line comments (if defined).
static java.lang.String TOGGLE_COMPONENT_ORIENTATION
          ToggleComponentOrientationAction Name of the action for toggling the component's orientation.
static java.lang.String TOGGLE_INSERT_MODE
          ToggleInsertModeAction Name of the action for toggling between insert and overwrite mode.
static java.lang.String TOGGLE_JAVA_COMMENTS
          Deprecated.  
static java.lang.String TOGGLE_MACRO_RECORDING
          MacroRecorderAction Name of the action for starting and stopping keystroke macro recording within editor.
static java.lang.String TOOLTIP_INSIGHT
          TooltipInsight Name of the action for invoking tooltip insight assistance.
static java.lang.String TRANSPOSE_CHARS
          TransposeCharsAction Name of the action for transposing two adjacent characters.
static java.lang.String UNSELECT
          UnselectAction Name of the action for removing selection.
static java.lang.String UNTABIFY
          UntabifyAction Name of the action for converting all hard tabs to spaces, adding enough spaces to preserve column positions of non-whitespace characters.
 
Constructor Summary
ActionNames()
           
 
Method Summary
static java.lang.String[] getAllActionNames()
          Fetch all action names that are available in the editor kit.
static java.lang.String lookupTranslatedName(java.lang.String name)
          Lookup the translated action name.
static boolean validateActionName(java.lang.String actionName)
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CUT_TO_CLIPBOARD

public static final java.lang.String CUT_TO_CLIPBOARD
CutAction

Name of the action to cut the selected region and place the contents into the system clipboard.

See Also:
Constant Field Values

COPY_TO_CLIPBOARD

public static final java.lang.String COPY_TO_CLIPBOARD
CopyAction

Name of the action to copy the selected region and place the contents into the system clipboard.

See Also:
Constant Field Values

PASTE_FROM_CLIPBOARD

public static final java.lang.String PASTE_FROM_CLIPBOARD
PasteAction

Name of the action to paste the contents of the system clipboard into the selected region, or before the caret if nothing is selected.

See Also:
Constant Field Values

EXTENDED_PASTE_FROM_CLIPBOARD

public static final java.lang.String EXTENDED_PASTE_FROM_CLIPBOARD
ExtendedPasteAction

Name of the action to paste the contents of stacked clipboard into the selected region, or before the caret if nothing is selected.

See Also:
Constant Field Values

CANCEL

public static final java.lang.String CANCEL
CancelAction

Name of the action for cancelling an operation in progress.

See Also:
Constant Field Values

COMPLETION_INSIGHT

public static final java.lang.String COMPLETION_INSIGHT
CompletionInsight

Name of the action for invoking completion insight assistance.

See Also:
Constant Field Values

SMART_COMPLETION_INSIGHT

public static final java.lang.String SMART_COMPLETION_INSIGHT
CompletionInsight

Name of the action for invoking completion insight assistance.

See Also:
Constant Field Values

TOOLTIP_INSIGHT

public static final java.lang.String TOOLTIP_INSIGHT
TooltipInsight

Name of the action for invoking tooltip insight assistance.

See Also:
Constant Field Values

BLOCK_INDENT

public static final java.lang.String BLOCK_INDENT
BlockIndentAction

Name of the action for performing a block indent.

See Also:
Constant Field Values

BLOCK_OUTDENT

public static final java.lang.String BLOCK_OUTDENT
BlockOutdentAction

Name of the action for performing a block outdent.

See Also:
Constant Field Values

CONVERT_SELECTION_UPCASE

public static final java.lang.String CONVERT_SELECTION_UPCASE
ConvertSelectionCaseAction

Name of the action for converting the entire selection to uppercase.

See Also:
Constant Field Values

CONVERT_SELECTION_DOWNCASE

public static final java.lang.String CONVERT_SELECTION_DOWNCASE
ConvertSelectionCaseAction

Name of the action for converting the entire selection to lowercase.

See Also:
Constant Field Values

DEFAULT_KEY_TYPED

public static final java.lang.String DEFAULT_KEY_TYPED
DefaultKeyTypedAction

Name of the action that is executed by default if a key typed event is received and there is no keymap entry.

See Also:
Constant Field Values

DELETE_LINE

public static final java.lang.String DELETE_LINE
DeleteLineAction

Name of the action for deleting the line the caret is currently on.

See Also:
Constant Field Values

DELETE_NEXT

public static final java.lang.String DELETE_NEXT
DeleteNextCharAction

Name of the action to delete the character of content that follows the current caret position.

See Also:
Constant Field Values

DELETE_PREVIOUS

public static final java.lang.String DELETE_PREVIOUS
DeletePrevCharAction

Name of the action to delete the character of content that precedes the current caret position.

See Also:
Constant Field Values

DELETE_UNTIL_EOL

public static final java.lang.String DELETE_UNTIL_EOL
DeleteUntilEOLAction

Name of the action for deleting from cursor position until the end of line.

See Also:
Constant Field Values

DELETE_NEXT_WORD_START

public static final java.lang.String DELETE_NEXT_WORD_START
DeleteUntilNextWordAction

Name of the action for deleting from cursor position until the next occurrence of a word start.

See Also:
Constant Field Values

DELETE_NEXT_WORD_END

public static final java.lang.String DELETE_NEXT_WORD_END
DeleteNextWordAction

Name of the action for deleting from cursor position until the next occurrence of a word end.

See Also:
Constant Field Values

DELETE_NEXT_WORD_BREAK

public static final java.lang.String DELETE_NEXT_WORD_BREAK
DeleteNextWordAction

Name of the action for deleting from cursor position until the next word break, which can be either the start or end of a word.

See Also:
Constant Field Values

DELETE_PREVIOUS_WORD_START

public static final java.lang.String DELETE_PREVIOUS_WORD_START
DeletePreviousWordAction

Name of the action for deleting from cursor position until the previous occurrence of a word start.

See Also:
Constant Field Values

DELETE_PREVIOUS_WORD_END

public static final java.lang.String DELETE_PREVIOUS_WORD_END
DeletePreviousWordAction

Name of the action for deleting from cursor position until the previous occurrence of a word end.

See Also:
Constant Field Values

DELETE_PREVIOUS_WORD_BREAK

public static final java.lang.String DELETE_PREVIOUS_WORD_BREAK
DeletePreviousWordAction

Name of the action for deleting from cursor position until the previous word break, which can be either the start or end of a word.

See Also:
Constant Field Values

INSERT_BREAK

public static final java.lang.String INSERT_BREAK
InsertBreakAction

Name of the action to place a line/paragraph break into the document. If there is a selection, it is removed before the break is added.

See Also:
Constant Field Values

INSERT_TAB

public static final java.lang.String INSERT_TAB
InsertTabAction

Name of the action to place a tab character into the document. If there is a selection, it is removed before the tab is added.

See Also:
Constant Field Values

OPEN_LINE

public static final java.lang.String OPEN_LINE
OpenLineAction

Name of the action for inserting a new line to the right of the current caret position.

See Also:
Constant Field Values

REVERSE_TAB

public static final java.lang.String REVERSE_TAB
ReverseTabAction

Name of the action to move the caret backwards to the previous tab stop.

See Also:
Constant Field Values

SORT_SELECTED_LINES

public static final java.lang.String SORT_SELECTED_LINES
SortSelectedLinesAction

Name of the action to sort the selected lines.

See Also:
Constant Field Values

TABIFY

public static final java.lang.String TABIFY
TabifyAction

Name of the action for converting leading spaces of a line to tabs if possible, preserving the ending column of the first non-whitespace of the line.

See Also:
Constant Field Values

TOGGLE_COMMENTS

public static final java.lang.String TOGGLE_COMMENTS
ToggleCommentsAction

Name of the action for toggling the current line or selected lines between commented or uncommented using the language's single line comments (if defined).

See Also:
Constant Field Values

TOGGLE_JAVA_COMMENTS

public static final java.lang.String TOGGLE_JAVA_COMMENTS
Deprecated.  

ToggleJavaCommentsAction

Name of the action for toggling the current line or selected lines between as commented or uncommented using Java single line comments.

See Also:
Constant Field Values

TRANSPOSE_CHARS

public static final java.lang.String TRANSPOSE_CHARS
TransposeCharsAction

Name of the action for transposing two adjacent characters.

See Also:
Constant Field Values

UNTABIFY

public static final java.lang.String UNTABIFY
UntabifyAction

Name of the action for converting all hard tabs to spaces, adding enough spaces to preserve column positions of non-whitespace characters.

See Also:
Constant Field Values

BEEP

public static final java.lang.String BEEP
BeepAction

Name of the action to create a beep.

See Also:
Constant Field Values

SET_LOCAL_TABSIZE2

public static final java.lang.String SET_LOCAL_TABSIZE2
SetLocalTabSizeAction

Name of the action to set the tab size of the current editor locally to 2.

See Also:
Constant Field Values

SET_LOCAL_TABSIZE4

public static final java.lang.String SET_LOCAL_TABSIZE4
SetLocalTabSizeAction

Name of the action to set the tab size of the current editor locally to 4.

See Also:
Constant Field Values

SET_LOCAL_TABSIZE8

public static final java.lang.String SET_LOCAL_TABSIZE8
SetLocalTabSizeAction

Name of the action to set the tab size of the current editor locally to 8.

See Also:
Constant Field Values

SET_READ_ONLY

public static final java.lang.String SET_READ_ONLY
ReadOnlyAction

Name of the action to set the editor into read-only mode.

See Also:
Constant Field Values

SET_WRITABLE

public static final java.lang.String SET_WRITABLE
WritableAction

Name of the action to set the editor into writeable mode.

See Also:
Constant Field Values

TOGGLE_COMPONENT_ORIENTATION

public static final java.lang.String TOGGLE_COMPONENT_ORIENTATION
ToggleComponentOrientationAction

Name of the action for toggling the component's orientation.

See Also:
Constant Field Values

TOGGLE_INSERT_MODE

public static final java.lang.String TOGGLE_INSERT_MODE
ToggleInsertModeAction

Name of the action for toggling between insert and overwrite mode.

See Also:
Constant Field Values

PLAYBACK_MACRO

public static final java.lang.String PLAYBACK_MACRO
MacroRecorderAction

Name of the action for starting playback of a recorded macro.

See Also:
Constant Field Values

TOGGLE_MACRO_RECORDING

public static final java.lang.String TOGGLE_MACRO_RECORDING
MacroRecorderAction

Name of the action for starting and stopping keystroke macro recording within editor.

See Also:
Constant Field Values

GOTO_MATCHING_BRACE

public static final java.lang.String GOTO_MATCHING_BRACE
GotoMatchingBraceAction

Name of the action to move the cursor to the matching brace (if brace matching is available.)

See Also:
Constant Field Values

SELECTION_MATCHING_BRACE

public static final java.lang.String SELECTION_MATCHING_BRACE
SelectionMatchingBraceAction

Name of the action to select text to the matching brace (if brace matching is available.)

See Also:
Constant Field Values

SHOW_MATCHING_BRACES

public static final java.lang.String SHOW_MATCHING_BRACES
ShowMatchingBraces

Name of the action for manually requesting a matching brace match.

See Also:
Constant Field Values

PAGE_UP

public static final java.lang.String PAGE_UP
PageUpAction

Name of the action to page up vertically.

See Also:
Constant Field Values

SELECTION_PAGE_UP

public static final java.lang.String SELECTION_PAGE_UP
PageUpAction

Name of the action to page up vertically, and move the selection.

See Also:
Constant Field Values

PAGE_DOWN

public static final java.lang.String PAGE_DOWN
PageDownAction

Name of the action to page down vertically.

See Also:
Constant Field Values

SELECTION_PAGE_DOWN

public static final java.lang.String SELECTION_PAGE_DOWN
PageDownAction

Name of the action to page down vertically, and move the selection.

See Also:
Constant Field Values

SELECTION_PAGE_LEFT

public static final java.lang.String SELECTION_PAGE_LEFT
PageLeftAction

Name of the action to page left horizontally, and move the selection.

See Also:
Constant Field Values

SELECTION_PAGE_RIGHT

public static final java.lang.String SELECTION_PAGE_RIGHT
PageRightAction

Name of the action to page right horizontally, and move the selection.

See Also:
Constant Field Values

CARET_FORWARD

public static final java.lang.String CARET_FORWARD
ForwardAction

Name of the action for moving the caret logically forward one position.

See Also:
Constant Field Values

SELECTION_FORWARD

public static final java.lang.String SELECTION_FORWARD
ForwardAction

Name of the action for extending the selection by moving the caret logically forward one position.

See Also:
Constant Field Values

CARET_BACKWARD

public static final java.lang.String CARET_BACKWARD
BackwardAction

Name of the action for moving the caret logically backward one position.

See Also:
Constant Field Values

SELECTION_BACKWARD

public static final java.lang.String SELECTION_BACKWARD
BackwordAction

Name of the action for extending the selection by moving the caret logically backward one position.

See Also:
Constant Field Values

CARET_UP

public static final java.lang.String CARET_UP
UpAction

Name of the action for moving the caret logically upward one position.

See Also:
Constant Field Values

SELECTION_UP

public static final java.lang.String SELECTION_UP
UpAction

Name of the action for moving the caret logically upward one position, extending the selection.

See Also:
Constant Field Values

CARET_DOWN

public static final java.lang.String CARET_DOWN
DownAction

Name of the action for moving the caret logically downward one position.

See Also:
Constant Field Values

SELECTION_DOWN

public static final java.lang.String SELECTION_DOWN
DownAction

Name of the action for moving the caret logically downward one position, extending the selection.

See Also:
Constant Field Values

CARET_BEGIN_WORD

public static final java.lang.String CARET_BEGIN_WORD
BeginWordAction

Name of the action for moving the caret to the begining of a word.

See Also:
Constant Field Values

SELECTION_BEGIN_WORD

public static final java.lang.String SELECTION_BEGIN_WORD
BeginWordAction

Name of the action for moving the caret to the begining of a word, extending the selection.

See Also:
Constant Field Values

CARET_END_WORD

public static final java.lang.String CARET_END_WORD
EndWordAction

Name of the action for moving the caret to the end of a word.

See Also:
Constant Field Values

SELECTION_END_WORD

public static final java.lang.String SELECTION_END_WORD
EndWordAction

Name of the action for moving the caret to the end of a word, extending the selection.

See Also:
Constant Field Values

CARET_PREVIOUS_WORD_START

public static final java.lang.String CARET_PREVIOUS_WORD_START
PreviousWordAction

Name of the action for moving the caret to the previous occurrence of a word start.

See Also:
Constant Field Values

CARET_PREVIOUS_WORD_END

public static final java.lang.String CARET_PREVIOUS_WORD_END
PreviousWordAction

Name of the action for moving the caret to the previous occurrence of a word end.

See Also:
Constant Field Values

CARET_PREVIOUS_WORD_BREAK

public static final java.lang.String CARET_PREVIOUS_WORD_BREAK
PreviousWordAction

Name of the action for moving the caret to the previous word break, which can be either the start or end of a word. of a word end.

See Also:
Constant Field Values

SELECTION_PREVIOUS_WORD_START

public static final java.lang.String SELECTION_PREVIOUS_WORD_START
PreviousWordAction

Name of the action for moving the selection to the previous occurrence of a word start, extending the selection.

See Also:
Constant Field Values

SELECTION_PREVIOUS_WORD_END

public static final java.lang.String SELECTION_PREVIOUS_WORD_END
PreviousWordAction

Name of the action for moving the selection to the previous occurrence of a word end, extending the selection.

See Also:
Constant Field Values

SELECTION_PREVIOUS_WORD_BREAK

public static final java.lang.String SELECTION_PREVIOUS_WORD_BREAK
PreviousWordAction

Name of the action for moving the selection to the previous word break, which can be either the start or end of a word.

See Also:
Constant Field Values

CARET_NEXT_WORD_START

public static final java.lang.String CARET_NEXT_WORD_START
NextWordAction

Name of the action for moving the caret to the next occurrence of a word start.

See Also:
Constant Field Values

CARET_NEXT_WORD_END

public static final java.lang.String CARET_NEXT_WORD_END
NextWordAction

Name of the action for moving the caret to the next occurrence of a word end.

See Also:
Constant Field Values

CARET_NEXT_WORD_BREAK

public static final java.lang.String CARET_NEXT_WORD_BREAK
NextWordAction

Name of the action for moving the caret to the next word break, which can be either the start or end of a word.

See Also:
Constant Field Values

SELECTION_NEXT_WORD_START

public static final java.lang.String SELECTION_NEXT_WORD_START
NextWordAction

Name of the action for moving the selection to the next occurrence of a word start, extending the selection.

See Also:
Constant Field Values

SELECTION_NEXT_WORD_END

public static final java.lang.String SELECTION_NEXT_WORD_END
NextWordAction

Name of the action for moving the selection to the next occurrence of a word end, extending the selection.

See Also:
Constant Field Values

SELECTION_NEXT_WORD_BREAK

public static final java.lang.String SELECTION_NEXT_WORD_BREAK
NextWordAction

Name of the action for moving the selection to the next word break, which can be either the start or end of a word.

See Also:
Constant Field Values

CARET_BEGIN_LINE

public static final java.lang.String CARET_BEGIN_LINE
BeginLineAction

Name of the action for moving the caret to the begining of a line.

See Also:
Constant Field Values

SELECTION_BEGIN_LINE

public static final java.lang.String SELECTION_BEGIN_LINE
BeginLineAction

Name of the action for moving the caret to the begining of a line, extending the selection.

See Also:
Constant Field Values

CARET_END_LINE

public static final java.lang.String CARET_END_LINE
EndLineAction

Name of the action for moving the caret to the end of a line.

See Also:
Constant Field Values

SELECTION_END_LINE

public static final java.lang.String SELECTION_END_LINE
EndLineAction

Name of the action for moving the caret to the end of a line, extending the selection.

See Also:
Constant Field Values

CARET_BEGIN_PARAGRAPH

public static final java.lang.String CARET_BEGIN_PARAGRAPH
BeginParagraphAction

Name of the action for moving the caret to the begining of a paragraph.

See Also:
Constant Field Values

SELECTION_BEGIN_PARAGRAPH

public static final java.lang.String SELECTION_BEGIN_PARAGRAPH
BeginParagraphAction

Name of the action for moving the caret to the begining of a paragraph, extending the selection.

See Also:
Constant Field Values

CARET_END_PARAGRAPH

public static final java.lang.String CARET_END_PARAGRAPH
EndParagraphAction

Name of the action for moving the caret to the end of a paragraph.

See Also:
Constant Field Values

SELECTION_END_PARAGRAPH

public static final java.lang.String SELECTION_END_PARAGRAPH
EndParagraphAction

Name of the action for moving the caret to the end of a paragraph, extending the selection.

See Also:
Constant Field Values

CARET_BEGIN

public static final java.lang.String CARET_BEGIN
BeginAction

Name of the action for moving the caret to the begining of the document.

See Also:
Constant Field Values

SELECTION_BEGIN

public static final java.lang.String SELECTION_BEGIN
BeginAction

Name of the action for moving the caret to the begining of the document, extending the selection.

See Also:
Constant Field Values

CARET_END

public static final java.lang.String CARET_END
EndAction

Name of the action for moving the caret to the end of the document.

See Also:
Constant Field Values

SELECTION_END

public static final java.lang.String SELECTION_END
EndAction

Name of the action for moving the caret to the end of the document, extending the selection.

See Also:
Constant Field Values

SELECT_WORD

public static final java.lang.String SELECT_WORD
SelectWordAction

Name of the action for selecting a word around the caret.

See Also:
Constant Field Values

SELECT_LINE

public static final java.lang.String SELECT_LINE
SelectLineAction

Name of the action for selecting a line around the caret.

See Also:
Constant Field Values

SELECT_PARAGRAPH

public static final java.lang.String SELECT_PARAGRAPH
SelectParagraphAction

Name of the action for selecting a paragraph around the caret.

See Also:
Constant Field Values

SELECT_ALL

public static final java.lang.String SELECT_ALL
SelectAllAction

Name of the action for selecting the entire document.

See Also:
Constant Field Values

UNSELECT

public static final java.lang.String UNSELECT
UnselectAction

Name of the action for removing selection.

See Also:
Constant Field Values

RECENTER_LINE

public static final java.lang.String RECENTER_LINE
RecenterLineAction

Name of the action for recentering the line the caret is on vertically on screen.

See Also:
Constant Field Values

SCROLL_LINE_UP

public static final java.lang.String SCROLL_LINE_UP
ScrollLineUpAction

Name of the action for scrolling the window up by one line (which moves the content downwards.)

See Also:
Constant Field Values

SCROLL_LINE_DOWN

public static final java.lang.String SCROLL_LINE_DOWN
ScrollLineDownAction

Name of the action for scrolling the window down by one line (which moves the content upwards.)

See Also:
Constant Field Values

SCROLL_PAGE_UP

public static final java.lang.String SCROLL_PAGE_UP
ScrollPageUpAction

Name of the action for scrolling the window up by one page (moving content down.)

See Also:
Constant Field Values

SCROLL_PAGE_DOWN

public static final java.lang.String SCROLL_PAGE_DOWN
ScrollPageDownAction

Name of the action for scrolling the window down by one page (moving content up.)

See Also:
Constant Field Values

EMACS_SET_MARK

public static final java.lang.String EMACS_SET_MARK
EmacsSetMarkAction

Name of the action for setting an Emacs-style mark in the editor.

See Also:
Constant Field Values

EMACS_EXCHANGE_POINT_MARK

public static final java.lang.String EMACS_EXCHANGE_POINT_MARK
EmacsExchangePointMarkAction

Name of the action for exchanging the point (current caret position) and an Emacs-style mark in the editor.

See Also:
Constant Field Values

EMACS_BACKWARD_KILL_WORD

public static final java.lang.String EMACS_BACKWARD_KILL_WORD
EmacsBackwardKillWordAction Name of the action for killing until the previous start of a word and adding or prepending it to the Emacs kill ring.

See Also:
Constant Field Values

EMACS_KILL_WORD

public static final java.lang.String EMACS_KILL_WORD
EmacsKillWordAction

Name of the action for killing until the next start of a word and adding or appending it to the Emacs kill ring.

See Also:
Constant Field Values

EMACS_KILL_LINE

public static final java.lang.String EMACS_KILL_LINE
EmacsKillLineAction

Name of the action for killing the line and adding or appending it to the Emacs kill ring.

See Also:
Constant Field Values

EMACS_KILL_REGION

public static final java.lang.String EMACS_KILL_REGION
EmacsKillRegionAction

Name of the action for killing the region between the point and mark and adding or appending it to the Emacs kill ring.

See Also:
Constant Field Values

EMACS_KILL_RING_SAVE

public static final java.lang.String EMACS_KILL_RING_SAVE
EmacsKillRegionAction

Name of the action for copying the region between the point and mark and adding or appending it into the Emacs kill ring.

See Also:
Constant Field Values

EMACS_APPEND_NEXT_KILL

public static final java.lang.String EMACS_APPEND_NEXT_KILL
EmacsAppendNextKillAction

Name of the action which sets the editor into a mode where if the next command is a kill, it will append into the kill-ring.

See Also:
Constant Field Values

EMACS_YANK

public static final java.lang.String EMACS_YANK
EmacsYankAction

Name of the action for yanking the text from the kill-ring.

See Also:
Constant Field Values

EMACS_YANK_POP

public static final java.lang.String EMACS_YANK_POP
EmacsYankAction

Name of the action for popping the text from the kill-ring.

See Also:
Constant Field Values

EMACS_CARET_BEGIN

public static final java.lang.String EMACS_CARET_BEGIN
EmacsBeginAction

Name of the action for marking the current caret position, and moving the caret to the start of the buffer.

See Also:
Constant Field Values

EMACS_CARET_END

public static final java.lang.String EMACS_CARET_END
EmacsEndAction

Name of the action for marking the current caret position, and moving the caret to the end of the buffer.

See Also:
Constant Field Values

EMACS_MARK_WHOLE_BUFFER

public static final java.lang.String EMACS_MARK_WHOLE_BUFFER
EmacsMarkBufferAction

Name of the action for marking the end of the buffer, and moving the caret to the start of the buffer.

See Also:
Constant Field Values

EMACS_CAPITALIZE_WORD

public static final java.lang.String EMACS_CAPITALIZE_WORD
CapitalizeWordAction

Name of the action for capitalizing the next non-whitespace character, and converting to the next end of a word to all lowercase.

See Also:
Constant Field Values

EMACS_DOWNCASE_REGION

public static final java.lang.String EMACS_DOWNCASE_REGION
EmacsCaseRegionAction

Name of the action for converting the region to all lowercase.

See Also:
Constant Field Values

EMACS_DOWNCASE_WORD

public static final java.lang.String EMACS_DOWNCASE_WORD
EmacsDowncaseWordAction

Name of the action for converting from the current position to the next end of a word to all lowercase.

See Also:
Constant Field Values

EMACS_UPCASE_REGION

public static final java.lang.String EMACS_UPCASE_REGION
EmacsCaseRegionAction

Name of the action for converting the region to all uppercase.

See Also:
Constant Field Values

EMACS_UPCASE_WORD

public static final java.lang.String EMACS_UPCASE_WORD
EmacsUpcaseWordAction

Name of the action for converting from the current position to the next end of a word to all lowercase.

See Also:
Constant Field Values

EMACS_DELETE_HORIZONTAL_SPACE

public static final java.lang.String EMACS_DELETE_HORIZONTAL_SPACE
EmacsDeleteHorizontalSpaceAction

Name of the action for deleting all spaces and tabs surrounding the current cursor position.

See Also:
Constant Field Values

EMACS_KILL_SENTENCE

public static final java.lang.String EMACS_KILL_SENTENCE
See Also:
Constant Field Values

EMACS_MARK_WORD

public static final java.lang.String EMACS_MARK_WORD
See Also:
Constant Field Values

EMACS_MARK_PARAGRAPH

public static final java.lang.String EMACS_MARK_PARAGRAPH
See Also:
Constant Field Values
Constructor Detail

ActionNames

public ActionNames()
Method Detail

getAllActionNames

public static java.lang.String[] getAllActionNames()
Fetch all action names that are available in the editor kit. These are the internal (non-translated) names that are the constant Strings in this file.

Returns:
an array of the action names

lookupTranslatedName

public static java.lang.String lookupTranslatedName(java.lang.String name)
Lookup the translated action name.

Parameters:
name - the internal name of the action
Returns:
the translated name of the action

validateActionName

public static boolean validateActionName(java.lang.String actionName)
Deprecated.  


Extension SDK 10.1.3.36.73

 

Copyright © 1997, 2005, Oracle.All rights reserved.