- 
- All Implemented Interfaces:
- NumberExpression,- Observable,- Property<Number>,- ReadOnlyProperty<Number>,- ObservableFloatValue,- ObservableNumberValue,- ObservableValue<Number>,- WritableFloatValue,- WritableNumberValue,- WritableValue<Number>,- StyleableProperty<Number>
 - Direct Known Subclasses:
- SimpleStyleableFloatProperty
 
 public abstract class StyleableFloatProperty extends FloatPropertyBase implements StyleableProperty<Number> This class extendsFloatPropertyBaseand provides a partial implementation of aStyleableProperty. The methodStyleableProperty.getCssMetaData()is not implemented. This class is used to make aFloatProperty, that would otherwise be implemented as aFloatPropertyBase, styleable by CSS.- Since:
- JavaFX 8.0
- See Also:
- FloatPropertyBase,- CssMetaData,- StyleableProperty
 
- 
- 
Constructor SummaryConstructors Constructor Description StyleableFloatProperty()The constructor of theStyleableFloatProperty.StyleableFloatProperty(float initialValue)The constructor of theStyleableFloatProperty.
 - 
Method SummaryModifier and Type Method Description voidapplyStyle(StyleOrigin origin, Number v)This method is called from CSS code to set the value of the property.voidbind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.StyleOrigingetStyleOrigin()Tells the origin of the value of the property.voidset(float v)Set the wrapped value.- 
Methods inherited from class javafx.beans.property.FloatPropertyBaseaddListener, addListener, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, toString, unbind
 - 
Methods inherited from class javafx.beans.property.FloatPropertyasObject, bindBidirectional, floatProperty, setValue, unbindBidirectional
 - 
Methods inherited from class javafx.beans.property.ReadOnlyFloatPropertyreadOnlyFloatProperty
 - 
Methods inherited from class javafx.beans.binding.FloatExpressionadd, add, add, add, divide, divide, divide, divide, doubleValue, floatExpression, floatExpression, floatValue, getValue, intValue, longValue, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtract
 - 
Methods inherited from class javafx.beans.binding.NumberExpressionBaseadd, asString, asString, asString, divide, greaterThan, greaterThan, greaterThan, greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, lessThan, lessThan, lessThan, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, multiply, numberExpression, subtract
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface javafx.beans.value.ObservableValuegetValue
 - 
Methods inherited from interface javafx.beans.property.ReadOnlyPropertygetBean, getName
 - 
Methods inherited from interface javafx.css.StyleablePropertygetCssMetaData
 - 
Methods inherited from interface javafx.beans.value.WritableValuegetValue
 
- 
 
- 
- 
- 
Constructor Detail- 
StyleableFloatPropertypublic StyleableFloatProperty() The constructor of theStyleableFloatProperty.
 - 
StyleableFloatPropertypublic StyleableFloatProperty(float initialValue) The constructor of theStyleableFloatProperty.- Parameters:
- initialValue- the initial value of the wrapped- Object
 
 
- 
 - 
Method Detail- 
applyStylepublic void applyStyle(StyleOrigin origin, Number v) This method is called from CSS code to set the value of the property.- Specified by:
- applyStylein interface- StyleableProperty<Number>
- Parameters:
- origin- the origin
- v- the value
 
 - 
bindpublic void bind(ObservableValue<? extends Number> observable) Create a unidirection binding for thisProperty.Note that JavaFX has all the bind calls implemented through weak listeners. This means the bound property can be garbage collected and stopped from being updated. - Specified by:
- bindin interface- Property<Number>
- Overrides:
- bindin class- FloatPropertyBase
- Parameters:
- observable- The observable this- Propertyshould be bound to.
 
 - 
setpublic void set(float v) Set the wrapped value. UnlikeWritableFloatValue.setValue(java.lang.Number), this method uses primitive float.- Specified by:
- setin interface- WritableFloatValue
- Overrides:
- setin class- FloatPropertyBase
- Parameters:
- v- The new value
 
 - 
getStyleOriginpublic StyleOrigin getStyleOrigin() Tells the origin of the value of the property. This is needed to determine whether or not CSS can override the value.- Specified by:
- getStyleOriginin interface- StyleableProperty<Number>
- Returns:
- the style origin
 
 
- 
 
-