Package com.borland.primetime.editor

Interface Summary
EditorActionNames This is the editor kit that JBuilder is going to use.
EditorActions.KeymapSwitchAction This is simply a tagging interface for Actions which switch to a subkeymap.
GutterListener The GutterListener interface is implemented by a client that wishes to listen for gutter events.
Scanner This is the interface that all of the scanner implementations must implement.
SearchResultsListener The SearchResultsListener interface is implemented by a client who wishes to listen to the results of a "grep"-type search.
 

Class Summary
AbstractScanner This class is the abstract base for language scanner classes used for syntax highlighting.
BasicStyleMap A BasicStyleMap keeps track of style names used by a particular scanner implementation.
BooleanEditorOption A BooleanEditorOption object defines a binary option related to the editor.
CUAActions This is the collection of actions available for CUA mode.
CUAActions.SetSubKeymapAction Sets the editor into a subkeymap mode.
DefaultKeymap This is simply an implementation of the Keymap interface.
EditorAction An EditorAction object defines an action that will operate on an instance of EditorPane.
EditorAction.SubKeymapAction The purpose of this class is to wrap an Action object that happens to be bound in a sub keymap.
EditorActions This is the editor kit that JBuilder is going to use.
EditorActions.BeginAction Move the caret to the begining of the document.
EditorActions.BeginLineAction Position the caret to the beginning of the line.
EditorActions.BeginWordAction Position the caret at the beginning of the current word.
EditorActions.BottomOfScreenAction Move the caret to the top of the screen.
EditorActions.ChangeWordCaseAction Convert the entire word to that contains the caret to upper- or lowercase.
EditorActions.CommentLineAction Place a line comment at the start of the current line.
EditorActions.CopyAction Coies the selected region and place its contents into the system clipboard.
EditorActions.CutAction Cuts the selected region and place its contents into the system clipboard.
EditorActions.DefaultKeyTypedAction The action that is executed by default if a key typed event is received and there is no keymap entry.
EditorActions.DeleteBeginLineAction Delete from the caret position to the beginning of the the line that the caret is currently on.
EditorActions.DeleteBeginWordAction Delete from the caret to the beginning of the current word.
EditorActions.DeleteEndLineAction Delete from the caret position to the end of the the line that the caret is currently on.
EditorActions.DeleteLineAction Delete the line that the caret is currently on.
EditorActions.DeleteNextCharAction Deletes the character of content that follows the current caret position.
EditorActions.DeletePrevCharAction Deletes the character of content that precedes the current caret position.
EditorActions.DeleteSelectionAction Delete the current selection.
EditorActions.DeleteWordAction Position the caret at (start? / end?) of the next word.
EditorActions.DownAction This action is basically used as a tag.
EditorActions.EndAction Move the caret to the end of the document.
EditorActions.EndLineAction Position the caret to the end of the line.
EditorActions.EndWordAction Position the caret at the end of the current word.
EditorActions.GotoBookmarkAction Goto a bookmark in the current editor
EditorActions.GotoLineDialogAction Bring up the Goto Line Dialog.
EditorActions.IncrementalSearchAction Incremental Search.
EditorActions.IndentBlockAction Indent every line that contains part of the current selection.
EditorActions.InsertTabAction Insert a tab character into the text.
EditorActions.LowerCaseAction Convert the selected text to lower case.
EditorActions.MatchBraceAction Move the caret to the matching brace, bracket, or paren.
EditorActions.NextVisualPositionAction Action to move the selection by way of the getNextVisualPositionFrom method.
EditorActions.NextWordAction Position the caret at start of the next word.
EditorActions.OpenLineAction Places a newline into the document.
EditorActions.OutdentBlockAction Outdent every line that contains part of the current selection.
EditorActions.PageDownAction Pages down vertically.
EditorActions.PageLeftAction Pages left one screen.
EditorActions.PageRightAction Pages right one screen.
EditorActions.PageUpAction Pages up vertically.
EditorActions.PasteAction Pastes the contents of the system clipboard into the selected region, or before the caret if nothing is selected.
EditorActions.PreviousIndentAction Move the caret to the previous indent position or tabstop.
EditorActions.PreviousWordAction Position the caret at the start of the previous word.
EditorActions.PrintAction Print the current document.
EditorActions.RecenterAction Center the current line on the screen.
EditorActions.RedoAction Redo the previously undone text modification.
EditorActions.ReplaceDialogAction Bring up the Replace Dialog.
EditorActions.ScrollDownAction Scroll the editor down one line.
EditorActions.ScrollUpAction Scroll the editor up one line.
EditorActions.SearchAgainAction Repeat the previous search.
EditorActions.SearchDialogAction Bring up the Search Dialog.
EditorActions.SelectAllAction Select the entire document
EditorActions.SelectLineAction Select the line around the caret
EditorActions.SelectWordAction Select the word around the caret
EditorActions.SetBookmarkAction Set a bookmark at the current caret position.
EditorActions.SetControlKAction Sets the editor into "C-K" mode.
EditorActions.SmartBackspaceAction This is the SmartBackspaceAction action.
EditorActions.SmartIndentAction This is the SmartIndent action.
EditorActions.StripTrailingSpaceAction Strip whitespace at the end of lines.
EditorActions.TabKeyAction Does one of three things: If EditorManager.isSmartTabs is true, places enough spaces on the the line to line up the next character typed with the next non-whitespace character on the previous non-blank line.
EditorActions.TestAction TestAction.
EditorActions.ToggleCaseAction Convert the selected text to lower case.
EditorActions.ToggleInsertModeAction Toggle the editor Insert mode (Insert or Overwrite)
EditorActions.TopOfScreenAction Move the caret to the top of the screen.
EditorActions.UndoAction Undo the previous text modification.
EditorActions.UnTabKeyAction This action is normally bound to the Shift-Tab key, thus the bizarre name.
EditorActions.UpAction This action is basically used as a tag.
EditorActions.UpperCaseAction Convert the selected text to upper case.
EditorDocument This is the editor document that the JBuilder editor is going to use.
EditorDocument.RunInfo This inner class stores blocks of run information.
EditorManager The EditorManager class manages all of the editors currently active in the system.
EditorOption An EditorOption object defines an option related to the editor.
EditorOptionCategory An EditorOptionCategory represents, amazingly enough, a category of editor options.
EditorPane This is the editor component for the PrimeTime framework.
EditorPane.HighlightMark This is the highlight mark, placed on a line within the editor (through the document) to emphasize that line.
EditorView This is the editor view for the PrimeTime editor.
Gutter The Gutter is a panel which sits on the left edge of a TextView.
GutterMark A GutterMark is a special type of LineMark which appears as an Icon in the gutter region of a TextView.
JBUndoManager This is the Undo Manager.
LineMark A LineMark is an object that represents a line position within a document.
MasterStyleContext This class manages styles that are used to paint text within the editor.
MasterStyleContext.FontKey key for a font table
ModalKeymap This is an extension of DefaultKeymap which handles a keymap that may have multiple modes (e.g.
ModalKeymap.ModeStateInfo This class is used to maintain any information about the editor state that may be specific to a particular keymap.
NullScanner This is the Scanner class to use when not doing syntax highlighting.
SearchManager This object stores search options and manages the search history lists.
SearchManager.BackgroundSearchThread  
SearchManager.FindAllMessage  
SearchManager.RemoveMessageAction  
SearchManager.SearchListener  
SearchManager.SearchPathResultMessage  
SearchOptions This object stores search options and is passed to the various SearchManager methods.
TextEditorKit This is the base editor kit that the PrimeTime text editor is going to use.
TextUtilities A customized collection of methods to deal with various text related activities.
TrackingKeymap This is a special subclass of DefaultKeymap which wraps retrieved Actions with a special TrackingAction.
TrackingKeymap.TrackingAction