java.lang.Object
javafx.scene.control.skin.TooltipSkin
public class TooltipSkin extends Object implements Skin<Tooltip>
CSS based skin for Tooltip. It deals mostly with show hide logic for
Popup based controls, and specifically in this case for tooltip. It also
implements some of the Skin interface methods.
TooltipContent class is the actual skin implementation of the tooltip.
-
Constructor Summary
Constructors Constructor Description TooltipSkin(Tooltip t)
Creates a new TooltipSkin instance for the givenTooltip
. -
Method Summary
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface javafx.scene.control.Skin
dispose, getNode, getSkinnable
-
Constructor Details
-
TooltipSkin
Creates a new TooltipSkin instance for the givenTooltip
.- Parameters:
t
- the tooltip
-