Example usage for Java javax.swing.text DefaultEditorKit fields, constructors, methods, implement or subclass
The text is from its open source code.
String | EndOfLineStringProperty When reading a document if a CRLF is encountered a property with this name is added and the value will be "\r\n". |
String | deleteNextWordAction Name of the action to delete the word that follows the beginning of the selection. |
String | deletePrevWordAction Name of the action to delete the word that precedes the beginning of the selection. |
String | readOnlyAction Name of the action to set the editor into read-only mode. |
String | writableAction Name of the action to set the editor into writeable mode. |
String | cutAction Name of the action to cut the selected region and place the contents into the system clipboard. |
String | copyAction Name of the action to copy the selected region and place the contents into the system clipboard. |
String | 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. |
String | beepAction Name of the action to create a beep. |
String | forwardAction Name of the Action for moving the caret logically forward one position. |
String | backwardAction Name of the Action for moving the caret logically backward one position. |
String | upAction Name of the Action for moving the caret logically upward one position. |
String | downAction Name of the Action for moving the caret logically downward one position. |
String | previousWordAction Name of the Action for moving the caret to the beginning of the previous word. |
String | nextWordAction Name of the Action for moving the caret to the beginning of the next word. |
String | selectionPreviousWordAction Name of the Action for moving the selection to the beginning of the previous word, extending the selection. |
String | selectionNextWordAction Name of the Action for moving the selection to the beginning of the next word, extending the selection. |
String | beginLineAction Name of the Action for moving the caret to the beginning of a line. |
String | endLineAction Name of the Action for moving the caret to the end of a line. |
String | selectionBeginLineAction Name of the Action for moving the caret to the beginning of a line, extending the selection. |
String | selectionEndLineAction Name of the Action for moving the caret to the end of a line, extending the selection. |
String | beginAction Name of the Action for moving the caret to the beginning of the document. |
String | endAction Name of the Action for moving the caret to the end of the document. |
String | selectWordAction Name of the Action for selecting a word around the caret. |
String | selectLineAction Name of the Action for selecting a line around the caret. |
String | selectParagraphAction Name of the Action for selecting a paragraph around the caret. |
String | selectAllAction Name of the Action for selecting the entire document |