Eclipse Platform
2.0

org.eclipse.ui.texteditor
Interface ITextEditorActionConstants

All Superinterfaces:
IWorkbenchActionConstants

public interface ITextEditorActionConstants
extends IWorkbenchActionConstants

Defines the names of those actions which are preregistered with the AbstractTextEditor. RULER_DOUBLE_CLICK defines the action which is registered as being executed when the editor's ruler has been double clicked. This interface extends the set of names available from IWorkbenchActionConstants. It also defines the names of the menu groups in a text editor's context menu.


Field Summary
static String CLEAR_MARK
          Name of the action to set the mark.
static String CONVERT_LINE_DELIMITERS_TO_MAC
          Name of the action to convert line delimiters to MAC.
static String CONVERT_LINE_DELIMITERS_TO_UNIX
          Name of the action to convert line delimiters to UNIX.
static String CONVERT_LINE_DELIMITERS_TO_WINDOWS
          Name of the action to convert line delimiters to Windows.
static String DELETE_LINE
          Name of the action to delete the current line.
static String DELETE_LINE_TO_BEGINNING
          Name of the action to delete line to beginning.
static String DELETE_LINE_TO_END
          Name of the action to delete line to end.
static String FIND_INCREMENTAL
          Name of the action to incremental find.
static String FIND_NEXT
          Name of the action to find next.
static String FIND_PREVIOUS
          Name of the action to find previous.
static String GOTO_LINE
          Name of the action to jump to a certain text line.
static String GROUP_COPY
          Context menu group for copy/paste related actions.
static String GROUP_EDIT
          Context menu group for text manipulation actions.
static String GROUP_FIND
          Context menu group for find/replace related actions.
static String GROUP_PRINT
          Context menu group for print related actions.
static String GROUP_REST
          Context menu group for actions which do not fit in one of the other categories.
static String GROUP_SAVE
          Context menu group for save related actions.
static String GROUP_UNDO
          Context menu group for undo/redo related actions.
static String REVERT_TO_SAVED
          Name of the action for re-establishing the state after the most recent save operation.
static String RULER_CLICK
          Name of the ruler action performed when clicking the editor's vertical ruler.
static String RULER_DOUBLE_CLICK
          Name of the ruler action performed when double clicking the editor's vertical ruler.
static String RULER_MANAGE_BOOKMARKS
          Name of the ruler action to manage bookmarks.
static String RULER_MANAGE_TASKS
          Name of the ruler action to manage tasks.
static String SET_MARK
          Name of the action to set the mark.
static String SHIFT_LEFT
          Name of the action for shifting text blocks to the left.
static String SHIFT_RIGHT
          Name of the action for shifting text blocks to the right.
static String STATUS_CATEGORY_ELEMENT_STATE
          Status line category "element state".
static String STATUS_CATEGORY_INPUT_MODE
          Status line category "input mode".
static String STATUS_CATEGORY_INPUT_POSITION
          Status line category "input position".
static String SWAP_MARK
          Name of the action to swap the mark with the cursor position.
 
Fields inherited from interface org.eclipse.ui.IWorkbenchActionConstants
ABOUT, ADD_EXT, ADD_TASK, BACK, BOOKMARK, BUILD, BUILD_EXT, BUILD_PROJECT, CLOSE, CLOSE_ALL, CLOSE_EXT, CLOSE_PROJECT, COPY, CUT, CUT_EXT, DELETE, EDIT_END, EDIT_START, EXPORT, FILE_END, FILE_START, FIND, FIND_EXT, FORWARD, GLOBAL_ACTIONS, GO_INTO, GO_TO, GROUP_ADD, GROUP_EDITOR, GROUP_FILE, GROUP_MANAGING, GROUP_REORGANIZE, HELP_END, HELP_START, IMPORT, IMPORT_EXT, LAUNCH_EXT, M_EDIT, M_FILE, M_HELP, M_LAUNCH, M_NAVIGATE, M_PROJECT, M_VIEW, M_WINDOW, M_WORKBENCH, MB_ADDITIONS, MENU_PREFIX, MOVE, MRU, NAV_END, NAV_START, NEW, NEW_EXT, NEXT, OPEN_EXT, OPEN_PROJECT, PASTE, PREVIOUS, PRINT, PROJ_END, PROJ_START, PROPERTIES, QUIT, REBUILD_ALL, REBUILD_PROJECT, REDO, REFRESH, RENAME, REVERT, SAVE, SAVE_ALL, SAVE_AS, SAVE_EXT, SELECT_ALL, SEP, SHOW_EXT, UNDO, UNDO_EXT, UP, VIEW_EXT, WB_END, WB_START, WINDOW_EXT
 

Field Detail

GROUP_UNDO

public static final String GROUP_UNDO
Context menu group for undo/redo related actions. Value: "group.undo"

See Also:
Constant Field Values

GROUP_COPY

public static final String GROUP_COPY
Context menu group for copy/paste related actions. Value: "group.copy"

See Also:
Constant Field Values

GROUP_EDIT

public static final String GROUP_EDIT
Context menu group for text manipulation actions. Value: "group.edit"

See Also:
Constant Field Values

GROUP_PRINT

public static final String GROUP_PRINT
Context menu group for print related actions. Value: "group.print"

See Also:
Constant Field Values

GROUP_FIND

public static final String GROUP_FIND
Context menu group for find/replace related actions. Value: "group.find"

See Also:
Constant Field Values

GROUP_SAVE

public static final String GROUP_SAVE
Context menu group for save related actions. Value: "group.save"

See Also:
Constant Field Values

GROUP_REST

public static final String GROUP_REST
Context menu group for actions which do not fit in one of the other categories. Value: "group.rest"

See Also:
Constant Field Values

SHIFT_RIGHT

public static final String SHIFT_RIGHT
Name of the action for shifting text blocks to the right. Value: "ShiftRight"

See Also:
Constant Field Values

SHIFT_LEFT

public static final String SHIFT_LEFT
Name of the action for shifting text blocks to the left. Value: "ShiftLeft"

See Also:
Constant Field Values

REVERT_TO_SAVED

public static final String REVERT_TO_SAVED
Name of the action for re-establishing the state after the most recent save operation. Value: "IWorkbenchActionConstants.REVERT"

See Also:
Constant Field Values

DELETE_LINE

public static final String DELETE_LINE
Name of the action to delete the current line. Value: "DeleteLine"

Since:
2.0
See Also:
Constant Field Values

DELETE_LINE_TO_BEGINNING

public static final String DELETE_LINE_TO_BEGINNING
Name of the action to delete line to beginning. Value: "DeleteLineToBeginning"

Since:
2.0
See Also:
Constant Field Values

DELETE_LINE_TO_END

public static final String DELETE_LINE_TO_END
Name of the action to delete line to end. Value: "DeleteLineToEnd"

Since:
2.0
See Also:
Constant Field Values

SET_MARK

public static final String SET_MARK
Name of the action to set the mark. Value: "SetMark"

Since:
2.0
See Also:
Constant Field Values

CLEAR_MARK

public static final String CLEAR_MARK
Name of the action to set the mark. Value: "ClearMark"

Since:
2.0
See Also:
Constant Field Values

SWAP_MARK

public static final String SWAP_MARK
Name of the action to swap the mark with the cursor position. Value: "SwapMark"

Since:
2.0
See Also:
Constant Field Values

GOTO_LINE

public static final String GOTO_LINE
Name of the action to jump to a certain text line. Value: "GotoLine"

See Also:
Constant Field Values

FIND_NEXT

public static final String FIND_NEXT
Name of the action to find next. Value: "FindNext"

Since:
2.0
See Also:
Constant Field Values

FIND_PREVIOUS

public static final String FIND_PREVIOUS
Name of the action to find previous. Value: "FindPrevious"

Since:
2.0
See Also:
Constant Field Values

FIND_INCREMENTAL

public static final String FIND_INCREMENTAL
Name of the action to incremental find. Value: "FindIncremental"

Since:
2.0
See Also:
Constant Field Values

CONVERT_LINE_DELIMITERS_TO_WINDOWS

public static final String CONVERT_LINE_DELIMITERS_TO_WINDOWS
Name of the action to convert line delimiters to Windows. Value: "ConvertLineDelimitersToWindows"

Since:
2.0
See Also:
Constant Field Values

CONVERT_LINE_DELIMITERS_TO_UNIX

public static final String CONVERT_LINE_DELIMITERS_TO_UNIX
Name of the action to convert line delimiters to UNIX. Value: "ConvertLineDelimitersToUNIX"

Since:
2.0
See Also:
Constant Field Values

CONVERT_LINE_DELIMITERS_TO_MAC

public static final String CONVERT_LINE_DELIMITERS_TO_MAC
Name of the action to convert line delimiters to MAC. Value: "ConvertLineDelimitersToMAC"

Since:
2.0
See Also:
Constant Field Values

RULER_DOUBLE_CLICK

public static final String RULER_DOUBLE_CLICK
Name of the ruler action performed when double clicking the editor's vertical ruler. Value: "RulerDoubleClick"

See Also:
Constant Field Values

RULER_CLICK

public static final String RULER_CLICK
Name of the ruler action performed when clicking the editor's vertical ruler. Value: "RulerClick"

Since:
2.0
See Also:
Constant Field Values

RULER_MANAGE_TASKS

public static final String RULER_MANAGE_TASKS
Name of the ruler action to manage tasks. Value: "ManageTasks"

See Also:
Constant Field Values

RULER_MANAGE_BOOKMARKS

public static final String RULER_MANAGE_BOOKMARKS
Name of the ruler action to manage bookmarks. Value: "ManageBookmarks"

See Also:
Constant Field Values

STATUS_CATEGORY_INPUT_POSITION

public static final String STATUS_CATEGORY_INPUT_POSITION
Status line category "input position". Value: "InputPosition"

Since:
2.0
See Also:
Constant Field Values

STATUS_CATEGORY_INPUT_MODE

public static final String STATUS_CATEGORY_INPUT_MODE
Status line category "input mode". Value: "InputMode"

Since:
2.0
See Also:
Constant Field Values

STATUS_CATEGORY_ELEMENT_STATE

public static final String STATUS_CATEGORY_ELEMENT_STATE
Status line category "element state". Value: "ElementState"

Since:
2.0
See Also:
Constant Field Values

Eclipse Platform
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.