Package org.fife.ui.rsyntaxtextarea
Interface ErrorStrip.ErrorStripMarkerToolTipProvider
-
- All Known Implementing Classes:
ErrorStrip.DefaultErrorStripMarkerToolTipProvider
- Enclosing class:
- ErrorStrip
public static interface ErrorStrip.ErrorStripMarkerToolTipProvider
Returns tool tip text for the markers in anErrorStrip
that denote one or more parser notices.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getToolTipText(java.util.List<ParserNotice> notices)
Returns the tool tip text for a marker in anErrorStrip
that denotes a given list of parser notices.
-
-
-
Method Detail
-
getToolTipText
java.lang.String getToolTipText(java.util.List<ParserNotice> notices)
Returns the tool tip text for a marker in anErrorStrip
that denotes a given list of parser notices.- Parameters:
notices
- The list of parser notices.- Returns:
- The tool tip text. This may be HTML. Returning
null
will result in no tool tip being displayed.
-
-