Uses of Interface
org.fife.ui.rsyntaxtextarea.parser.Parser
-
Packages that use Parser Package Description org.fife.ui.rsyntaxtextarea A syntax-highlighting text editor.org.fife.ui.rsyntaxtextarea.folding Code folding functionality.org.fife.ui.rsyntaxtextarea.parser Interfaces for parsing text in RSyntaxTextAreas and identifying errors, warnings, etc. -
-
Uses of Parser in org.fife.ui.rsyntaxtextarea
Fields in org.fife.ui.rsyntaxtextarea declared as Parser Modifier and Type Field Description private Parser
ParserManager. parserForTip
Fields in org.fife.ui.rsyntaxtextarea with type parameters of type Parser Modifier and Type Field Description private java.util.List<Parser>
ParserManager. parsers
Methods in org.fife.ui.rsyntaxtextarea that return Parser Modifier and Type Method Description Parser
ErrorStrip.MarkedOccurrenceNotice. getParser()
Parser
ParserManager. getParser(int index)
Returns the specified parser.Parser
RSyntaxTextArea. getParser(int index)
Returns the specified parser.Methods in org.fife.ui.rsyntaxtextarea with parameters of type Parser Modifier and Type Method Description void
ParserManager. addParser(Parser parser)
Adds a parser for the text area.void
RSyntaxTextArea. addParser(Parser parser)
Adds the parser to "validate" the source code in this text area.void
RSyntaxTextAreaHighlighter. clearParserHighlights(Parser parser)
Removes all the highlights for a specific parser.private void
ParserManager. clearParserNoticeHighlights(Parser parser)
Removes all parser notice highlights for a specific parser.boolean
RSyntaxTextArea. forceReparsing(Parser parser)
Forces reparsing with a specific parser.boolean
ParserManager. removeParser(Parser parser)
Removes a parser.boolean
RSyntaxTextArea. removeParser(Parser parser)
Removes a parser from this text area.private void
ParserManager. removeParserNotices(Parser parser)
Removes all parser notices (and clears highlights in the editor) from a particular parser. -
Uses of Parser in org.fife.ui.rsyntaxtextarea.folding
Fields in org.fife.ui.rsyntaxtextarea.folding declared as Parser Modifier and Type Field Description private Parser
DefaultFoldManager. rstaParser
-
Uses of Parser in org.fife.ui.rsyntaxtextarea.parser
Classes in org.fife.ui.rsyntaxtextarea.parser that implement Parser Modifier and Type Class Description class
AbstractParser
A base class forParser
implementations.class
TaskTagParser
Parser that identifies "task tags," such as "TODO
", "FIXME
", etc.class
XmlParser
A parser for XML documents.Fields in org.fife.ui.rsyntaxtextarea.parser declared as Parser Modifier and Type Field Description private Parser
DefaultParseResult. parser
private Parser
DefaultParserNotice. parser
Methods in org.fife.ui.rsyntaxtextarea.parser that return Parser Modifier and Type Method Description Parser
DefaultParseResult. getParser()
Parser
DefaultParserNotice. getParser()
Parser
ParseResult. getParser()
Returns the parser that generated these notices.Parser
ParserNotice. getParser()
Returns the parser that created this message.Constructors in org.fife.ui.rsyntaxtextarea.parser with parameters of type Parser Constructor Description DefaultParseResult(Parser parser)
DefaultParserNotice(Parser parser, java.lang.String msg, int line)
Constructor.DefaultParserNotice(Parser parser, java.lang.String message, int line, int offset, int length)
Constructor.TaskNotice(Parser parser, java.lang.String message, int line, int offs, int length)
-