- All Implemented Interfaces:
- NumberExpression,- Observable,- Property<Number>,- ReadOnlyProperty<Number>,- ObservableDoubleValue,- ObservableNumberValue,- ObservableValue<Number>,- WritableDoubleValue,- WritableNumberValue,- WritableValue<Number>,- StyleableProperty<Number>
public class SimpleStyleableDoubleProperty extends StyleableDoubleProperty
This class extends 
SimpleDoubleProperty and provides a full
 implementation of a StyleableProperty.
 This class is used to make a DoubleProperty,
 that would otherwise be implemented as a SimpleDoubleProperty,
 styleable by CSS.- Since:
- JavaFX 8.0
- See Also:
- SimpleDoubleProperty,- CssMetaData,- StyleableProperty,- StyleableDoubleProperty
- 
Constructor SummaryConstructors Constructor Description SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData)The constructor of theSimpleStyleableDoubleProperty.SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Double initialValue)The constructor of theSimpleStyleableDoubleProperty.SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableDoubleProperty.SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Double initialValue)The constructor of theSimpleStyleableDoubleProperty.
- 
Method SummaryMethods declared in class javafx.beans.property.DoublePropertyBasefireValueChangedEvent, invalidated, toStringMethods declared in class javafx.beans.property.DoublePropertyasObject, doublePropertyMethods declared in class javafx.beans.property.ReadOnlyDoublePropertyreadOnlyDoublePropertyMethods declared in class javafx.beans.binding.DoubleExpressionadd, add, add, add, add, divide, divide, divide, divide, divide, doubleExpression, doubleExpression, multiply, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtract, subtractMethods declared in class javafx.beans.binding.NumberExpressionBasenumberExpressionMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.binding.NumberExpressionasString, asString, asString, 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, lessThanOrEqualToMethods declared in interface javafx.beans.ObservableaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableDoubleValuegetMethods declared in interface javafx.beans.value.ObservableNumberValuedoubleValue, floatValue, intValue, longValueMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListenerMethods declared in interface javafx.beans.property.Propertybind, bindBidirectional, isBound, unbind, unbindBidirectionalMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getNameMethods declared in interface javafx.css.StyleablePropertyapplyStyle, getCssMetaData, getStyleOriginMethods declared in interface javafx.beans.value.WritableDoubleValueget, set, setValueMethods declared in interface javafx.beans.value.WritableValuegetValue
- 
Constructor Details- 
SimpleStyleableDoublePropertyThe constructor of theSimpleStyleableDoubleProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
 
- 
SimpleStyleableDoublePropertypublic SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Double initialValue)The constructor of theSimpleStyleableDoubleProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- initialValue- the initial value of the wrapped- Object
 
- 
SimpleStyleableDoublePropertypublic SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableDoubleProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- bean- the bean of this- DoubleProperty
- name- the name of this- DoubleProperty
 
- 
SimpleStyleableDoublePropertypublic SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Double initialValue)The constructor of theSimpleStyleableDoubleProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- bean- the bean of this- DoubleProperty
- name- the name of this- DoubleProperty
- initialValue- the initial value of the wrapped- Object
 
 
-