| Interface | Description |
|---|---|
| Parser |
An interface for a parser.
|
| SyntaxConstants |
Constants that define the different programming languages understood by
RSyntaxTextArea. |
| TokenMaker |
An implementation of
TokenMaker is a class that turns text into
a linked list of Tokens for syntax highlighting
in a particular language. |
| TokenOrientedView |
An interface for the syntax-highlighting token oriented views for
token-oriented methods.
|
| Class | Description |
|---|---|
| AbstractJFlexCTokenMaker |
Base class for JFlex-based token makers using C-style syntax.
|
| AbstractJFlexTokenMaker |
Base class for JFlex-generated token makers.
|
| AbstractTokenMaker |
An abstract implementation of the
TokenMaker interface. |
| AbstractTokenMakerFactory |
Base class for
TokenMakerFactory implementations. |
| CodeTemplateManager |
Manages "code templates."
|
| DefaultToken |
The default token used in the
org.fife.ui.rsyntaxtextarea syntax
package. |
| FileLocation |
Holds the location of a local or remote file.
|
| ParserNotice |
A notice (e.g., a warning or error) from a parser.
|
| RSyntaxDocument |
The document used by
RSyntaxTextArea. |
| RSyntaxTextArea |
An extension of
RTextArea that adds syntax highlighting
of certain programming languages to its list of features. |
| RSyntaxTextAreaDefaultInputMap |
The default input map for an
RSyntaxTextArea. |
| RSyntaxTextAreaEditorKit |
An extension of
RTextAreaEditorKit that adds functionality for
programming-specific stuff. |
| RSyntaxTextAreaEditorKit.CloseCurlyBraceAction |
Action that (optionally) aligns a closing curly brace with the line
containing its matching opening curly brace.
|
| RSyntaxTextAreaEditorKit.CopyAsRtfAction |
Action for copying text as RTF.
|
| RSyntaxTextAreaEditorKit.DecreaseFontSizeAction |
Action for decreasing the font size of all fonts in the text area.
|
| RSyntaxTextAreaEditorKit.DecreaseIndentAction |
Action for when un-indenting lines (either the current line if there is
selection, or all selected lines if there is one).
|
| RSyntaxTextAreaEditorKit.GoToMatchingBracketAction |
Action for moving the caret to the "matching bracket" of the bracket
at the caret position (either before or after).
|
| RSyntaxTextAreaEditorKit.IncreaseFontSizeAction |
Action for increasing the font size of all fonts in the text area.
|
| RSyntaxTextAreaEditorKit.InsertBreakAction |
Action for when the user presses the Enter key.
|
| RSyntaxTextAreaEditorKit.InsertTabAction |
Action for inserting tabs.
|
| RSyntaxTextAreaEditorKit.PossiblyInsertTemplateAction |
Action for when the user tries to insert a template (that is,
they've typed a template ID and pressed the trigger character
(a space) in an attempt to do the substitution).
|
| RSyntaxTextAreaEditorKit.ToggleCommentAction |
Action that toggles whether the currently selected lines are
commented.
|
| RSyntaxTextAreaHighlighter |
The highlighter implementation used by
RSyntaxTextAreas. |
| RSyntaxTextAreaUI |
UI used by
RSyntaxTextArea. |
| RSyntaxUtilities |
Utility methods used by
RSyntaxTextArea and its associated
classes. |
| RtfGenerator |
Generates RTF text via a simple Java API.
|
| SquiggleUnderlineHighlightPainter |
Highlight painter that paints a squiggly underline underneath text, similar
to what popular IDE's such as Visual Studio and Eclipse do to indicate
errors, warnings, etc.
|
| Style |
The color and style information for a token type.
|
| SyntaxScheme |
The set of colors and styles used by an
RSyntaxTextArea to
color tokens. |
| SyntaxView |
The
javax.swing.text.View object used by RSyntaxTextArea
when word wrap is disabled. |
| TextEditorPane |
An extension of
RSyntaxTextArea
that adds information about the file being edited, such as:
Its name and location. |
| Token |
A generic token that functions as a node in a linked list of syntax
highlighted tokens for some language.
|
| TokenMakerFactory |
A factory that maps syntax styles to
TokenMakers capable of splitting
text into tokens for those syntax styles. |
| TokenMap |
A hash table for reserved words, etc.
|
| VisibleWhitespaceToken |
This token class paints spaces and tabs with special symbols so the user
can see the whitespace in his document.
|
| WrappedSyntaxView |
The view used by
RSyntaxTextArea when word wrap is enabled. |
| XMLParser |
A parser for XML documents.
|
Copyright © 2009-2013 jtstand.com. All Rights Reserved.