Top Fields Constructors Methods
com.sun.javafx.scene.control.skin

public Class WebColorFieldSkin

extends InputFieldSkin
Class Inheritance
Imports
com.sun.javafx.scene.control.WebColorField, java.util.regex.Pattern, javafx.beans.InvalidationListener, javafx.geometry.NodeOrientation, javafx.scene.Node, javafx.scene.paint.Color

Field Summary

Modifier and TypeField and Description
private static final String
private InvalidationListener
private static final Pattern
private static final Pattern
Inherited from com.sun.javafx.scene.control.skin.InputFieldSkin:
control

Constructor Summary

AccessConstructor and Description
public
WebColorFieldSkin(final WebColorField
The WebColorField
control
)

Create a new WebColorFieldSkin.

Method Summary

Modifier and TypeMethod and Description
protected boolean
public void
dispose()

Overrides com.sun.javafx.scene.control.skin.InputFieldSkin.dispose.

Implements javafx.scene.control.Skin.dispose.

Called by a Skinnable when the Skin is replaced on the Skinnable.

public Node
getNode()

Overrides com.sun.javafx.scene.control.skin.InputFieldSkin.getNode.

Implements javafx.scene.control.Skin.getNode.

Gets the Node which represents this Skin.

public WebColorField
getSkinnable()

Overrides com.sun.javafx.scene.control.skin.InputFieldSkin.getSkinnable.

Implements javafx.scene.control.Skin.getSkinnable.

Gets the Skinnable to which this Skin is assigned.

protected void
protected void
Inherited from com.sun.javafx.scene.control.skin.InputFieldSkin:
getTextField

Field Detail

HEX_DIGITback to summary
private static final String HEX_DIGIT
integerFieldValueListenerback to summary
private InvalidationListener integerFieldValueListener
PARTIAL_PATTERNback to summary
private static final Pattern PARTIAL_PATTERN
PATTERNback to summary
private static final Pattern PATTERN

Constructor Detail

WebColorFieldSkinback to summary
public WebColorFieldSkin(final WebColorField control)

Create a new WebColorFieldSkin.

Parameters
control:WebColorField

The WebColorField

Method Detail

acceptback to summary
protected boolean accept(String text)

Implements abstract com.sun.javafx.scene.control.skin.InputFieldSkin.accept.

Annotations
@Override
disposeback to summary
public void dispose()

Overrides com.sun.javafx.scene.control.skin.InputFieldSkin.dispose.

Implements javafx.scene.control.Skin.dispose.

Called by a Skinnable when the Skin is replaced on the Skinnable. This method allows a Skin to implement any logic necessary to clean up itself after the Skin is no longer needed. It may be used to release native resources. The methods getSkinnable() and getNode() should return null following a call to dispose. Calling dispose twice has no effect.

Annotations
@Override
getNodeback to summary
public Node getNode()

Overrides com.sun.javafx.scene.control.skin.InputFieldSkin.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 WebColorField getSkinnable()

Overrides com.sun.javafx.scene.control.skin.InputFieldSkin.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:WebColorField

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

Annotations
@Override
updateTextback to summary
protected void updateText()

Implements abstract com.sun.javafx.scene.control.skin.InputFieldSkin.updateText.

Annotations
@Override
updateValueback to summary
protected void updateValue()

Implements abstract com.sun.javafx.scene.control.skin.InputFieldSkin.updateValue.

Annotations
@Override