Package org.fife.ui.rsyntaxtextarea
Class ErrorStrip.DefaultErrorStripMarkerToolTipProvider
- java.lang.Object
-
- org.fife.ui.rsyntaxtextarea.ErrorStrip.DefaultErrorStripMarkerToolTipProvider
-
- All Implemented Interfaces:
ErrorStrip.ErrorStripMarkerToolTipProvider
- Enclosing class:
- ErrorStrip
private static class ErrorStrip.DefaultErrorStripMarkerToolTipProvider extends java.lang.Object implements ErrorStrip.ErrorStripMarkerToolTipProvider
The default implementation of the provider of tool tips for markers in an error strip.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
DefaultErrorStripMarkerToolTipProvider()
-
Method Summary
All Methods Instance Methods Concrete 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
public java.lang.String getToolTipText(java.util.List<ParserNotice> notices)
Description copied from interface:ErrorStrip.ErrorStripMarkerToolTipProvider
Returns the tool tip text for a marker in anErrorStrip
that denotes a given list of parser notices.- Specified by:
getToolTipText
in interfaceErrorStrip.ErrorStripMarkerToolTipProvider
- 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.
-
-