Uses of Interface
org.fife.ui.rsyntaxtextarea.parser.Parser
Packages that use Parser
Package
Description
A syntax-highlighting text editor.
Code folding functionality.
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 ParserFields in org.fife.ui.rsyntaxtextarea with type parameters of type ParserMethods in org.fife.ui.rsyntaxtextarea that return ParserModifier and TypeMethodDescriptionErrorStrip.MarkedOccurrenceNotice.getParser()
ParserManager.getParser
(int index) Returns the specified parser.RSyntaxTextArea.getParser
(int index) Returns the specified parser.Methods in org.fife.ui.rsyntaxtextarea with parameters of type ParserModifier and TypeMethodDescriptionvoid
Adds a parser for the text area.void
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 -
Uses of Parser in org.fife.ui.rsyntaxtextarea.parser
Classes in org.fife.ui.rsyntaxtextarea.parser that implement ParserModifier and TypeClassDescriptionclass
A base class forParser
implementations.class
Parser that identifies "task tags," such as "TODO
", "FIXME
", etc.class
A parser for XML documents.Fields in org.fife.ui.rsyntaxtextarea.parser declared as ParserModifier and TypeFieldDescriptionprivate Parser
DefaultParseResult.parser
private Parser
DefaultParserNotice.parser
Methods in org.fife.ui.rsyntaxtextarea.parser that return ParserModifier and TypeMethodDescriptionDefaultParseResult.getParser()
DefaultParserNotice.getParser()
ParseResult.getParser()
Returns the parser that generated these notices.ParserNotice.getParser()
Returns the parser that created this message.Constructors in org.fife.ui.rsyntaxtextarea.parser with parameters of type ParserModifierConstructorDescriptionDefaultParseResult
(Parser parser) DefaultParserNotice
(Parser parser, String msg, int line) Constructor.DefaultParserNotice
(Parser parser, String message, int line, int offset, int length) Constructor.TaskNotice
(Parser parser, String message, int line, int offs, int length)