Uses of Interface
org.fife.ui.rsyntaxtextarea.parser.ParserNotice
-
Packages that use ParserNotice 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 ParserNotice in org.fife.ui.rsyntaxtextarea
Classes in org.fife.ui.rsyntaxtextarea that implement ParserNotice Modifier and Type Class Description private class
ErrorStrip.MarkedOccurrenceNotice
A notice that wraps a "marked occurrence" instance.Fields in org.fife.ui.rsyntaxtextarea declared as ParserNotice Modifier and Type Field Description private ParserNotice
ParserManager.NoticeHighlightPair. notice
private ParserNotice
RSyntaxTextAreaHighlighter.SyntaxLayeredHighlightInfoImpl. notice
Fields in org.fife.ui.rsyntaxtextarea with type parameters of type ParserNotice Modifier and Type Field Description private java.util.List<ParserNotice>
ErrorStrip.Marker. notices
Methods in org.fife.ui.rsyntaxtextarea that return types with arguments of type ParserNotice Modifier and Type Method Description java.util.List<ParserNotice>
ParserManager. getParserNotices()
Returns a list of the current parser notices for this text area.java.util.List<ParserNotice>
RSyntaxTextArea. getParserNotices()
Returns a list of the current parser notices for this text area.Methods in org.fife.ui.rsyntaxtextarea with parameters of type ParserNotice Modifier and Type Method Description void
ErrorStrip.Marker. addNotice(ParserNotice notice)
(package private) RTextAreaHighlighter.HighlightInfo
RSyntaxTextAreaHighlighter. addParserHighlight(ParserNotice notice, javax.swing.text.Highlighter.HighlightPainter p)
Adds a highlight from a parser.int
ErrorStrip.MarkedOccurrenceNotice. compareTo(ParserNotice other)
private boolean
ParserManager. noticeContainsPointInView(ParserNotice notice, java.awt.Point p)
SinceviewToModel()
returns the closest model position, and the position doesn't necessarily contain the point passed in as an argument, this method checks whether the point is indeed contained in the view rectangle for the specified offset.private boolean
ParserManager. noticeContainsPosition(ParserNotice notice, int offs)
Returns whether a parser notice contains the specified offset.private boolean
ParserManager. shouldRemoveNotice(ParserNotice notice, ParseResult res)
Returns whether a parser notice should be removed, based on a parse result.Method parameters in org.fife.ui.rsyntaxtextarea with type arguments of type ParserNotice Modifier and Type Method Description java.lang.String
ErrorStrip.DefaultErrorStripMarkerToolTipProvider. getToolTipText(java.util.List<ParserNotice> notices)
java.lang.String
ErrorStrip.ErrorStripMarkerToolTipProvider. getToolTipText(java.util.List<ParserNotice> notices)
Returns the tool tip text for a marker in anErrorStrip
that denotes a given list of parser notices.Constructors in org.fife.ui.rsyntaxtextarea with parameters of type ParserNotice Constructor Description Marker(ParserNotice notice)
NoticeHighlightPair(ParserNotice notice, RTextAreaHighlighter.HighlightInfo highlight)
-
Uses of ParserNotice in org.fife.ui.rsyntaxtextarea.parser
Classes in org.fife.ui.rsyntaxtextarea.parser that implement ParserNotice Modifier and Type Class Description class
DefaultParserNotice
Base implementation of a parser notice.static class
TaskTagParser.TaskNotice
A parser notice that signifies a task.Fields in org.fife.ui.rsyntaxtextarea.parser with type parameters of type ParserNotice Modifier and Type Field Description private java.util.List<ParserNotice>
DefaultParseResult. notices
Methods in org.fife.ui.rsyntaxtextarea.parser that return types with arguments of type ParserNotice Modifier and Type Method Description java.util.List<ParserNotice>
DefaultParseResult. getNotices()
java.util.List<ParserNotice>
ParseResult. getNotices()
Returns the notices for the parsed section.Methods in org.fife.ui.rsyntaxtextarea.parser with parameters of type ParserNotice Modifier and Type Method Description void
DefaultParseResult. addNotice(ParserNotice notice)
Adds a parser notice.int
DefaultParserNotice. compareTo(ParserNotice other)
Compares this parser notice to another.
-