java.lang.Object
javafx.beans.binding.NumberExpressionBase
javafx.beans.binding.DoubleExpression
javafx.beans.property.ReadOnlyDoubleProperty
javafx.beans.property.DoubleProperty
javafx.beans.property.DoublePropertyBase
- All Implemented Interfaces:
- NumberExpression,- Observable,- Property<Number>,- ReadOnlyProperty<Number>,- ObservableDoubleValue,- ObservableNumberValue,- ObservableValue<Number>,- WritableDoubleValue,- WritableNumberValue,- WritableValue<Number>
- Direct Known Subclasses:
- SimpleDoubleProperty,- StyleableDoubleProperty
public abstract class DoublePropertyBase extends DoubleProperty
The class 
DoublePropertyBase is the base class for a property
 wrapping a double value.
 It provides all the functionality required for a property except for the
 ReadOnlyProperty.getBean() and ReadOnlyProperty.getName() methods, which must be implemented
 by extending classes.- Since:
- JavaFX 2.0
- See Also:
- DoubleProperty
- 
Constructor SummaryConstructors Constructor Description DoublePropertyBase()The constructor of theDoublePropertyBase.DoublePropertyBase(double initialValue)The constructor of theDoublePropertyBase.
- 
Method SummaryModifier and Type Method Description protected voidfireValueChangedEvent()Sends notifications to all attachedInvalidationListenersandChangeListeners.protected voidinvalidated()The methodinvalidated()can be overridden to receive invalidation notifications.StringtoString()Returns a string representation of thisDoublePropertyBaseobject.Methods 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- 
DoublePropertyBasepublic DoublePropertyBase()The constructor of theDoublePropertyBase.
- 
DoublePropertyBasepublic DoublePropertyBase(double initialValue)The constructor of theDoublePropertyBase.- Parameters:
- initialValue- the initial value of the wrapped value
 
 
- 
- 
Method Details- 
fireValueChangedEventprotected void fireValueChangedEvent()Sends notifications to all attachedInvalidationListenersandChangeListeners. This method is called when the value is changed, either manually by callingWritableDoubleValue.set(double)or in case of a bound property, if the binding becomes invalid.
- 
invalidatedprotected void invalidated()The methodinvalidated()can be overridden to receive invalidation notifications. This is the preferred option inObjectsdefining the property, because it requires less memory. The default implementation is empty.
- 
toStringReturns a string representation of thisDoublePropertyBaseobject.- Overrides:
- toStringin class- DoubleProperty
- Returns:
- a string representation of this DoublePropertyBaseobject.
 
 
-