Uses of Class
org.fife.ui.rsyntaxtextarea.RSyntaxDocument
-
Packages that use RSyntaxDocument Package Description org.fife.ui.rsyntaxtextarea A syntax-highlighting text editor.org.fife.ui.rsyntaxtextarea.parser Interfaces for parsing text in RSyntaxTextAreas and identifying errors, warnings, etc. -
-
Uses of RSyntaxDocument in org.fife.ui.rsyntaxtextarea
Fields in org.fife.ui.rsyntaxtextarea declared as RSyntaxDocument Modifier and Type Field Description private RSyntaxDocument
TokenIterator. doc
Methods in org.fife.ui.rsyntaxtextarea with parameters of type RSyntaxDocument Modifier and Type Method Description private java.lang.String
RSyntaxTextAreaEditorKit.CloseMarkupTagAction. discoverTagName(RSyntaxDocument doc, int dot)
Discovers the name of the tag being closed.private static int
RSyntaxTextAreaEditorKit.InsertBreakAction. getOpenBraceCount(RSyntaxDocument doc, int languageIndex)
static Token
RSyntaxUtilities. getPreviousImportantToken(RSyntaxDocument doc, int line)
Returns the last non-whitespace, non-comment token, starting with the specified line.static Token
RSyntaxUtilities. getPreviousImportantTokenFromOffs(RSyntaxDocument doc, int offs)
Returns the last non-whitespace, non-comment token, before the specified offset.private int
RSyntaxTextAreaEditorKit.DumbCompleteWordAction. getPreviousWordStartInLine(RSyntaxDocument doc, javax.swing.text.Element elem, int offs)
static Token
RSyntaxUtilities. getTokenAtOffset(RSyntaxDocument doc, int offset)
Returns the token at the specified offset.static Token
RSyntaxUtilities. getTokenAtOffsetOrLastTokenIfEndOfLine(RSyntaxDocument doc, int offset)
Returns the token at the specified offset.private static int
RSyntaxTextAreaEditorKit.DumbCompleteWordAction. getWordStartImpl(RSyntaxDocument doc, javax.swing.text.Element elem, int offs)
void
DefaultOccurrenceMarker. markOccurrences(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
void
HtmlOccurrenceMarker. markOccurrences(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
void
OccurrenceMarker. markOccurrences(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
Called when occurrences of a token should be marked.void
XmlOccurrenceMarker. markOccurrences(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
static void
DefaultOccurrenceMarker. markOccurrencesOfToken(RSyntaxDocument doc, Token t, RSyntaxTextAreaHighlighter h, SmartHighlightPainter p)
Highlights all instances of tokens identical tot
in the specified document.Constructors in org.fife.ui.rsyntaxtextarea with parameters of type RSyntaxDocument Constructor Description RSyntaxTextArea(RSyntaxDocument doc)
Constructor.RSyntaxTextArea(RSyntaxDocument doc, java.lang.String text, int rows, int cols)
Constructor.TokenIterator(RSyntaxDocument doc)
Constructor. -
Uses of RSyntaxDocument in org.fife.ui.rsyntaxtextarea.parser
Methods in org.fife.ui.rsyntaxtextarea.parser with parameters of type RSyntaxDocument Modifier and Type Method Description ParseResult
Parser. parse(RSyntaxDocument doc, java.lang.String style)
Parses input from the specified document.ParseResult
TaskTagParser. parse(RSyntaxDocument doc, java.lang.String style)
ParseResult
XmlParser. parse(RSyntaxDocument doc, java.lang.String style)
-