Package com.explodingpixels.macwidgets
Interface SourceListToolTipProvider
-
public interface SourceListToolTipProviderAn interface that allows implementors to supply the tool tip for aSourceListCategoryorSourceListItem.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetTooltip(SourceListCategory category)Gets the tool tip to use for the givenSourceListCategory.java.lang.StringgetTooltip(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- theSourceListCategoryto 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- theSourceListItemto get the tooltip for.- Returns:
- the tool tip, or null if no tool tip should be shown.
-
-