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 classErrorStrip.MarkedOccurrenceNoticeA notice that wraps a "marked occurrence" instance.Fields in org.fife.ui.rsyntaxtextarea declared as ParserNotice Modifier and Type Field Description private ParserNoticeParserManager.NoticeHighlightPair. noticeprivate ParserNoticeRSyntaxTextAreaHighlighter.SyntaxLayeredHighlightInfoImpl. noticeFields in org.fife.ui.rsyntaxtextarea with type parameters of type ParserNotice Modifier and Type Field Description private java.util.List<ParserNotice>ErrorStrip.Marker. noticesMethods 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 voidErrorStrip.Marker. addNotice(ParserNotice notice)(package private) RTextAreaHighlighter.HighlightInfoRSyntaxTextAreaHighlighter. addParserHighlight(ParserNotice notice, javax.swing.text.Highlighter.HighlightPainter p)Adds a highlight from a parser.intErrorStrip.MarkedOccurrenceNotice. compareTo(ParserNotice other)private booleanParserManager. 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 booleanParserManager. noticeContainsPosition(ParserNotice notice, int offs)Returns whether a parser notice contains the specified offset.private booleanParserManager. 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.StringErrorStrip.DefaultErrorStripMarkerToolTipProvider. getToolTipText(java.util.List<ParserNotice> notices)java.lang.StringErrorStrip.ErrorStripMarkerToolTipProvider. getToolTipText(java.util.List<ParserNotice> notices)Returns the tool tip text for a marker in anErrorStripthat 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 classDefaultParserNoticeBase implementation of a parser notice.static classTaskTagParser.TaskNoticeA 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. noticesMethods 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 voidDefaultParseResult. addNotice(ParserNotice notice)Adds a parser notice.intDefaultParserNotice. compareTo(ParserNotice other)Compares this parser notice to another.
-