Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public void | dispose()
Implements javafx. Called when a previously installed skin is about to be removed from its associated control. |
public Node | |
public Tooltip | getSkinnable()
Implements javafx. Gets the Skinnable to which this Skin is assigned. |
tipLabel | back to summary |
---|---|
private Label tipLabel |
tooltip | back to summary |
---|---|
private Tooltip tooltip |
TooltipSkin | back to summary |
---|---|
public TooltipSkin(Tooltip t) Creates a new TooltipSkin instance for the given
|
dispose | back to summary |
---|---|
public void dispose() Implements javafx. Doc from javafx. 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,
Calling
|
getNode | back to summary |
---|---|
public Node getNode() Implements javafx. Doc from javafx. Gets the Node which represents this Skin. This must never be null, except
after a call to |
getSkinnable | back to summary |
---|---|
public Tooltip getSkinnable() Implements javafx. Doc from javafx. 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 The caller who constructs a Skinnable must also construct a Skin and properly establish the relationship between the Control and its Skin. |