Package | Description |
---|---|
oracle.javatools.editor |
The
Editor package is a basic framework for an editor component with syntax highlighting capabilities, built on top of the Swing text framework. |
Modifier and Type | Class and Description |
---|---|
static class |
BasicEditorKit.BlockIndentOutdentAction
The
BlockIndentOutdentAction implementation of the action for performing a block indent or block outdent. |
static class |
BasicEditorKit.ConvertSelectionCaseAction
The
ConvertSelectionCaseAction implementation of the action for converting a block to upper or lower case. |
static class |
BasicEditorKit.CopyAction
The
CopyAction implementation of the action to copy the selected region and place the contents into the system clipboard. |
static class |
BasicEditorKit.CutAction
The
CutAction implementation of the action to cut the selected region and place the contents into the system clipboard. |
static class |
BasicEditorKit.DefaultKeyTypedAction
Replacement for the normal key typed action to add support for insert/overwrite mode with the caret.
|
static class |
BasicEditorKit.DeleteLineAction
The
DeleteLineAction implementation of the action for deleting the line the caret is currently on. |
static class |
BasicEditorKit.DeleteNextCharAction
The
DeleteNextCharAction implementation |
static class |
BasicEditorKit.DeleteNextWordAction
The
DeleteUntilNextWordAction implementation of the action for deleting from cursor position until the next occurrence of a word start or word end. |
static class |
BasicEditorKit.DeletePrevCharAction
The
DeletePrevCharAction implementation of the action to delete the character of content that precedes the current caret position. |
static class |
BasicEditorKit.DeletePreviousWordAction
The
DeletePreviousWordAction implementation of the action for deleting from cursor position until the previous occurrence of a word start or word end. |
static class |
BasicEditorKit.DeleteUntilEOLAction
The
DeleteUntilEOLAction implementation of the action for deleting from cursor position until the end of line. |
static class |
BasicEditorKit.ExtendedPasteAction
The
PasteAction implementation of the action to paste the contents of the system clipboard into the selected region, or before the caret if nothing is selected. |
static class |
BasicEditorKit.InsertBreakAction
The
InsertBreakAction implementation of the action to place a line/paragraph break into the document. |
static class |
BasicEditorKit.InsertTabAction
The
InsertTabAction implementation of the action to place a tab character into the document. |
static class |
BasicEditorKit.JoinLineAction
The
JoinLineAction implementation of the action for joining the line the caret is currently on. |
static class |
BasicEditorKit.MacroRecorderAction
The
MacroRecorderAction implementation of the action for both playing back a recorded macro as well as for toggling macro recording on and off. |
static class |
BasicEditorKit.MoveDownAction
The
MoveDownAction implementation of the action for moving selection/line/stuff down by one line |
static class |
BasicEditorKit.MoveUpAction
The
MoveUpAction implementation of the action for moving selection/line/stuff up by one line |
static class |
BasicEditorKit.NewLineAction
The
NewLineAction implementation of the action for inserting a new line after the end of the line containing current caret position, and moving the caret there. |
static class |
BasicEditorKit.OpenLineAction
The
OpenLineAction implementation of the action for inserting a new line to the right of the current caret position. |
static class |
BasicEditorKit.PasteAction
The
PasteAction implementation of the action to paste the contents of the system clipboard into the selected region, or before the caret if nothing is selected. |
static class |
BasicEditorKit.ReverseTabAction
The
ReverseTabAction implementation of the action to move the caret backwards to the previous tab stop. |
static class |
BasicEditorKit.SortSelectedLines
The
SortSelectedLinesAction implementation of the action for sorting the selected lines. |
static class |
BasicEditorKit.TabifyAction
The
TabifyAction implementation 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 class |
BasicEditorKit.ToggleCommentsAction
The
ToggleCommentsAction implementation of the action for toggling the current line or selected lines between as commented or uncommented using the language's single-line comments (if defined.) |
static class |
BasicEditorKit.TransposeCharsAction
The
TransposeCharsAction implementation of the action for transposing two adjacent characters. |
static class |
BasicEditorKit.TrimWhitespaceAction
The
TrimWhitespaceAction implementation of the action for removing whitespace characters from the end of every line |
static class |
BasicEditorKit.UntabifyAction
The
UntabifyAction implementation of the action for converting all hard tabs to spaces, adding enough spaces to preserve column positions of non-whitespace characters. |