Top Description Fields Constructors Methods
javafx.scene.control.skin

public Class TooltipSkin

extends Object
implements Skin<Tooltip>
Class Inheritance
All Implemented Interfaces
javafx.scene.control.Skin
Imports
javafx.scene.Node, javafx.scene.control.Label, .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.

Field Summary

Modifier and TypeField and Description
private Label
private Tooltip

Constructor Summary

AccessConstructor and Description
public
TooltipSkin(Tooltip
the tooltip
t
)

Creates a new TooltipSkin instance for the given Tooltip.

Method Summary

Modifier and TypeMethod and Description
public void
dispose()

Implements javafx.scene.control.Skin.dispose.

Called when a previously installed skin is about to be removed from its associated control.

public Node
getNode()

Implements javafx.scene.control.Skin.getNode.

Gets the Node which represents this Skin.

public Tooltip
getSkinnable()

Implements javafx.scene.control.Skin.getSkinnable.

Gets the Skinnable to which this Skin is assigned.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

tipLabelback to summary
private Label tipLabel
tooltipback to summary
private Tooltip tooltip

Constructor Detail

TooltipSkinback to summary
public TooltipSkin(Tooltip t)

Creates a new TooltipSkin instance for the given Tooltip.

Parameters
t:Tooltip

the tooltip

Method Detail

disposeback to summary
public void dispose()

Implements javafx.scene.control.Skin.dispose.

Doc from javafx.scene.control.Skin.dispose.

Called when a previously installed skin is about to be removed from its associated control. This allows the skin to do clean up, like removing listeners and bindings, and undo any changes to the control's properties. After this method completes, getSkinnable() and getNode() should return null.

Calling dispose() more than once has no effect.

Annotations
@Override
getNodeback to summary
public Node getNode()

Implements javafx.scene.control.Skin.getNode.

Doc from javafx.scene.control.Skin.getNode.

Gets the Node which represents this Skin. This must never be null, except after a call to dispose(), and must never change except when changing to null.

Returns:Node

A non-null Node, except when the Skin has been disposed.

Annotations
@Override
getSkinnableback to summary
public Tooltip getSkinnable()

Implements javafx.scene.control.Skin.getSkinnable.

Doc from javafx.scene.control.Skin.getSkinnable.

Gets the Skinnable to which this Skin is assigned. A Skin must be created for one and only one Skinnable. This value will only ever go from a non-null to null value when the Skin is removed from the Skinnable, and only as a consequence of a call to dispose().

The caller who constructs a Skinnable must also construct a Skin and properly establish the relationship between the Control and its Skin.

Returns:Tooltip

A non-null Skinnable, or null value if disposed.

Annotations
@Override