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 ParserParserManager. parserForTipFields in org.fife.ui.rsyntaxtextarea with type parameters of type Parser Modifier and Type Field Description private java.util.List<Parser>ParserManager. parsersMethods in org.fife.ui.rsyntaxtextarea that return Parser Modifier and Type Method Description ParserErrorStrip.MarkedOccurrenceNotice. getParser()ParserParserManager. getParser(int index)Returns the specified parser.ParserRSyntaxTextArea. getParser(int index)Returns the specified parser.Methods in org.fife.ui.rsyntaxtextarea with parameters of type Parser Modifier and Type Method Description voidParserManager. addParser(Parser parser)Adds a parser for the text area.voidRSyntaxTextArea. addParser(Parser parser)Adds the parser to "validate" the source code in this text area.voidRSyntaxTextAreaHighlighter. clearParserHighlights(Parser parser)Removes all the highlights for a specific parser.private voidParserManager. clearParserNoticeHighlights(Parser parser)Removes all parser notice highlights for a specific parser.booleanRSyntaxTextArea. forceReparsing(Parser parser)Forces reparsing with a specific parser.booleanParserManager. removeParser(Parser parser)Removes a parser.booleanRSyntaxTextArea. removeParser(Parser parser)Removes a parser from this text area.private voidParserManager. 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 ParserDefaultFoldManager. 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 classAbstractParserA base class forParserimplementations.classTaskTagParserParser that identifies "task tags," such as "TODO", "FIXME", etc.classXmlParserA parser for XML documents.Fields in org.fife.ui.rsyntaxtextarea.parser declared as Parser Modifier and Type Field Description private ParserDefaultParseResult. parserprivate ParserDefaultParserNotice. parserMethods in org.fife.ui.rsyntaxtextarea.parser that return Parser Modifier and Type Method Description ParserDefaultParseResult. getParser()ParserDefaultParserNotice. getParser()ParserParseResult. getParser()Returns the parser that generated these notices.ParserParserNotice. 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)
-