Top Description Fields Constructors Methods
javafx.css

public Class SimpleStyleableFloatProperty

extends StyleableFloatProperty
Class Inheritance
Imports
javafx.beans.NamedArg, javafx.beans.property.SimpleFloatProperty

This class extends SimpleFloatProperty and provides a full implementation of a StyleableProperty. This class is used to make a javafx.beans.property.FloatProperty, that would otherwise be implemented as a SimpleFloatProperty, styleable by CSS.
Since
JavaFX 8.0
See Also
javafx.beans.property.SimpleFloatProperty, CssMetaData, StyleableProperty, StyleableFloatProperty

Field Summary

Modifier and TypeField and Description
private final Object
private final CssMetaData<? extends Styleable, Number>
private static final Object
private static final String
private final String

Constructor Summary

AccessConstructor and Description
public
SimpleStyleableFloatProperty(CssMetaData<? extends Styleable, Number>
the CssMetaData associated with this StyleableProperty
cssMetaData
)

The constructor of the SimpleStyleableFloatProperty.

public
SimpleStyleableFloatProperty(CssMetaData<? extends Styleable, Number>
the CssMetaData associated with this StyleableProperty
cssMetaData
,
Float
the initial value of the wrapped Object
initialValue
)

The constructor of the SimpleStyleableFloatProperty.

public
SimpleStyleableFloatProperty(CssMetaData<? extends Styleable, Number>
the CssMetaData associated with this StyleableProperty
cssMetaData
,
Object
the bean of this FloatProperty
bean
,
String
the name of this FloatProperty
name
)

The constructor of the SimpleStyleableFloatProperty.

public
SimpleStyleableFloatProperty(CssMetaData<? extends Styleable, Number>
the CssMetaData associated with this StyleableProperty
cssMetaData
,
Object
the bean of this FloatProperty
bean
,
String
the name of this FloatProperty
name
,
Float
the initial value of the wrapped Object
initialValue
)

The constructor of the SimpleStyleableFloatProperty.

Method Summary

Modifier and TypeMethod and Description
public Object
getBean()

Implements javafx.beans.property.ReadOnlyProperty.getBean.

Returns the Object that contains this property.

public final CssMetaData<? extends Styleable, Number>
getCssMetaData()

Implements javafx.css.StyleableProperty.getCssMetaData.

Reflect back the CssMetaData that corresponds to this javafx.beans.property.StyleableProperty

public String
getName()

Implements javafx.beans.property.ReadOnlyProperty.getName.

Returns the name of this property.

Inherited from javafx.css.StyleableFloatProperty:
applyStylebindgetStyleOriginset

Field Detail

beanback to summary
private final Object bean
cssMetaDataback to summary
private final CssMetaData<? extends Styleable, Number> cssMetaData
DEFAULT_BEANback to summary
private static final Object DEFAULT_BEAN
DEFAULT_NAMEback to summary
private static final String DEFAULT_NAME
nameback to summary
private final String name

Constructor Detail

SimpleStyleableFloatPropertyback to summary
public SimpleStyleableFloatProperty(CssMetaData<? extends Styleable, Number> cssMetaData)

The constructor of the SimpleStyleableFloatProperty.

Parameters
cssMetaData:CssMetaData<? extends Styleable, Number>

the CssMetaData associated with this StyleableProperty

SimpleStyleableFloatPropertyback to summary
public SimpleStyleableFloatProperty(CssMetaData<? extends Styleable, Number> cssMetaData, Float initialValue)

The constructor of the SimpleStyleableFloatProperty.

Parameters
cssMetaData:CssMetaData<? extends Styleable, Number>

the CssMetaData associated with this StyleableProperty

initialValue:Float

the initial value of the wrapped Object

SimpleStyleableFloatPropertyback to summary
public SimpleStyleableFloatProperty(CssMetaData<? extends Styleable, Number> cssMetaData, Object bean, String name)

The constructor of the SimpleStyleableFloatProperty.

Parameters
cssMetaData:CssMetaData<? extends Styleable, Number>

the CssMetaData associated with this StyleableProperty

bean:Object

the bean of this FloatProperty

name:String

the name of this FloatProperty

SimpleStyleableFloatPropertyback to summary
public SimpleStyleableFloatProperty(CssMetaData<? extends Styleable, Number> cssMetaData, Object bean, String name, Float initialValue)

The constructor of the SimpleStyleableFloatProperty.

Parameters
cssMetaData:CssMetaData<? extends Styleable, Number>

the CssMetaData associated with this StyleableProperty

bean:Object

the bean of this FloatProperty

name:String

the name of this FloatProperty

initialValue:Float

the initial value of the wrapped Object

Method Detail

getBeanback to summary
public Object getBean()

Implements javafx.beans.property.ReadOnlyProperty.getBean.

Doc from javafx.beans.property.ReadOnlyProperty.getBean.

Returns the Object that contains this property. If this property is not contained in an Object, null is returned.

Returns:Object

the containing Object or null

Annotations
@Override
getCssMetaDataback to summary
public final CssMetaData<? extends Styleable, Number> getCssMetaData()

Implements javafx.css.StyleableProperty.getCssMetaData.

Doc from javafx.css.StyleableProperty.getCssMetaData.

Reflect back the CssMetaData that corresponds to this javafx.beans.property.StyleableProperty

Returns:CssMetaData<? extends Styleable, Number>

the corresponding CssMetaData

Annotations
@Override
getNameback to summary
public String getName()

Implements javafx.beans.property.ReadOnlyProperty.getName.

Doc from javafx.beans.property.ReadOnlyProperty.getName.

Returns the name of this property. If the property does not have a name, this method returns an empty String.

Returns:String

the name or an empty String

Annotations
@Override