Package com.explodingpixels.macwidgets
Interface SourceListToolTipProvider
-
public interface SourceListToolTipProvider
An interface that allows implementors to supply the tool tip for aSourceListCategory
orSourceListItem
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getTooltip(SourceListCategory category)
Gets the tool tip to use for the givenSourceListCategory
.java.lang.String
getTooltip(SourceListItem item)
Gets the tool tip to use for the givenSourceListItem
.
-
-
-
Method Detail
-
getTooltip
java.lang.String getTooltip(SourceListCategory category)
Gets the tool tip to use for the givenSourceListCategory
.- Parameters:
category
- theSourceListCategory
to get the tooltip for.- Returns:
- the tool tip, or null if no tool tip should be shown.
-
getTooltip
java.lang.String getTooltip(SourceListItem item)
Gets the tool tip to use for the givenSourceListItem
.- Parameters:
item
- theSourceListItem
to get the tooltip for.- Returns:
- the tool tip, or null if no tool tip should be shown.
-
-