Package com.cburch.editor

Contains the most useful library classes for incorporating a programmer's editor (the Editor class) into a larger program.

See:
          Description

Interface Summary
Scanner<T> The interface that any scanner associated with an editor should implement.
TokenType An interface that any token category must implement.
 

Class Summary
AutoIndent Handles the automatic indentation as the user types.
BracketMatcher Handles parenthesis matching, both in highlighting unmatched parentheses and in displaying the matches of the parenthesis under the caret.
DirtyTracker Tracks whether there have been any changes to a document.
Editor Implements a text editor for which various features common to high-quality text editors can be installed.
EditorPanel A component that places an editor within a scroll pane, with line numbers installed.
LineNumbers Tracks the lines within a document, and enables them to be displayed along with the document.
SyntaxHighlighter Handles coloring tokens according to their corresponding styles.
Token<T extends TokenType> Represents a token with an associated category.
 

Package com.cburch.editor Description

Contains the most useful library classes for incorporating a programmer's editor (the Editor class) into a larger program.

Version:
0.1 2005-05-31
Author:
Carl Burch