- All Implemented Interfaces:
- NumberExpression,- Observable,- Property<Number>,- ReadOnlyProperty<Number>,- ObservableDoubleValue,- ObservableNumberValue,- ObservableValue<Number>,- WritableDoubleValue,- WritableNumberValue,- WritableValue<Number>
- Direct Known Subclasses:
- ReadOnlyDoubleWrapper
public class SimpleDoubleProperty extends DoublePropertyBase
This class provides a full implementation of a 
Property wrapping a
 double value.- Since:
- JavaFX 2.0
- See Also:
- DoublePropertyBase
- 
Constructor SummaryConstructors Constructor Description SimpleDoubleProperty()The constructor ofDoublePropertySimpleDoubleProperty(double initialValue)The constructor ofDoublePropertySimpleDoubleProperty(Object bean, String name)The constructor ofDoublePropertySimpleDoubleProperty(Object bean, String name, double initialValue)The constructor ofDoubleProperty
- 
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.beans.value.WritableDoubleValueget, set, setValueMethods declared in interface javafx.beans.value.WritableValuegetValue
- 
Constructor Details- 
SimpleDoublePropertypublic SimpleDoubleProperty()The constructor ofDoubleProperty
- 
SimpleDoublePropertypublic SimpleDoubleProperty(double initialValue)The constructor ofDoubleProperty- Parameters:
- initialValue- the initial value of the wrapped value
 
- 
SimpleDoublePropertyThe constructor ofDoubleProperty- Parameters:
- bean- the bean of this- DoubleProperty
- name- the name of this- DoubleProperty
 
- 
SimpleDoublePropertyThe constructor ofDoubleProperty- Parameters:
- bean- the bean of this- DoubleProperty
- name- the name of this- DoubleProperty
- initialValue- the initial value of the wrapped value
 
 
-