Package com.borland.primetime.editor

Interface Summary
EditorActionNames This interface defines the names of all the actions that each editor can use.
EditorActions.KeymapSwitchAction This is simply a tagging interface for Actions which switch to a subkeymap.
EditorContextActionProvider An EditorContextActionProvider returns action object to be displayed in the context menu when a user right-clicks in the editor.
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 basic style names used by scanner implementations.
BookmarkManager A BookmarkManager contains all of the logic and storage for maintaining bookmarks within the editor.
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 Enables the editor to switch 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.BackwardAction Action to move the cursor backward by one character.
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 bottom of the screen.
EditorActions.ChangeWordCaseAction Convert the entire word that contains the caret to upper- or lowercase.
EditorActions.ClearBookmarksAction Clears all bookmarks in the current editor.
EditorActions.ClosingCurlyBraceAction Do any special code handling when the closing curly brace is entered.
EditorActions.CommentLineAction Place a line comment at the start of the current line.
EditorActions.CopyAction Copies 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 Delete all characters from the current Caret position to the end of the current 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.ForwardAction Action to move the cursor forward by one character.
EditorActions.GotoBookmarkAction Goto a bookmark in one of the editors
EditorActions.GotoBookmarkDialogAction Bring up the Goto Bookmark Dialog.
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.NextBookmarkAction Goto the next bookmark below the current line, with wrap around to the top if no bookmark is found before the end of the file.
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.PreviousBookmarkAction Goto the previous bookmark above the current line, with wrap around to the bottom if no bookmark is found before the start of the file.
EditorActions.PreviousIndentAction Move the caret to the previous indent position.
EditorActions.PreviousWordAction Position the caret at the start of the previous word.
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.SearchSelectedAction Search on the selected text.
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.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 the following: 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.ToggleBookmarkAction Toggle a bookmark at the current caret position.
EditorActions.ToggleCaseAction Toggle the case of each character in the selected text.
EditorActions.ToggleInsertModeAction Toggle the editor Insert mode (Insert or Overwrite)
EditorActions.TopOfScreenAction Move the caret to the top of the screen.
EditorActions.TransposeCharsAction Switch the position of the two characters on either side of the caret.
EditorActions.TransposeLinesAction Switch the position of the line that the caret is on with the previous line.
EditorActions.TransposeWordsAction Switch the position of the two words on either side of the caret.
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.
EditorCaret This is our custom Caret, derived from DefaultCaret.
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 syntax highlighting is not needed and not wanted.
SearchManager This object stores search options and manages the search history lists.
SearchManager.BackgroundSearchThread  
SearchManager.FindAllMessage Helper class to store the editor related details of a message created from a match in a search.
SearchManager.RemoveMessageAction This class implements the action that will remove a message from a messageview.
SearchManager.SearchListener Helper class to implement the SearchResultsListener.
SearchManager.SearchPathResultMessage Helper class to store the editor related details of a message created from a match in a search in path.
SearchManager.StopSearchAction This class implements the action that will stop all searches.
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 Helper class that wraps an action/keyStroke combination.
VisualStudioActions This is the collection of actions available for Visual Studio mode.
VisualStudioActions.VisualStudioDeleteLineAction Handle the delete(cut) line command.
VisualStudioActions.VisualStudioEscapeAction Clear out any special states after the escape key.
VisualStudioActions.VisualStudioSelectCharAction Start the character selection state.
VisualStudioActions.VisualStudioSelectColumnAction Start the character selection state.