Package com.explodingpixels.macwidgets
Interface SourceListToolTipProvider
public interface SourceListToolTipProvider
An interface that allows implementors to supply the tool tip for a
SourceListCategory
or
SourceListItem
.-
Method Summary
Modifier and TypeMethodDescriptiongetTooltip
(SourceListCategory category) Gets the tool tip to use for the givenSourceListCategory
.getTooltip
(SourceListItem item) Gets the tool tip to use for the givenSourceListItem
.
-
Method Details
-
getTooltip
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
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.
-