Uses of Interface
org.fife.ui.rsyntaxtextarea.parser.ParseResult
-
Packages that use ParseResult 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 ParseResult in org.fife.ui.rsyntaxtextarea
Methods in org.fife.ui.rsyntaxtextarea with parameters of type ParseResult Modifier and Type Method Description private void
ParserManager. addParserNoticeHighlights(ParseResult res)
Adds highlights for a list of parser notices.private void
ParserManager. removeParserNotices(ParseResult res)
Removes any currently stored notices (and the corresponding highlights from the editor) from the same Parser, and in the given line range, as in the results.private boolean
ParserManager. shouldRemoveNotice(ParserNotice notice, ParseResult res)
Returns whether a parser notice should be removed, based on a parse result. -
Uses of ParseResult in org.fife.ui.rsyntaxtextarea.parser
Classes in org.fife.ui.rsyntaxtextarea.parser that implement ParseResult Modifier and Type Class Description class
DefaultParseResult
A basic implementation ofParseResult
.Methods in org.fife.ui.rsyntaxtextarea.parser that return ParseResult 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)
-