Package org.reactfx.inhibeans.property
Class SimpleDoubleProperty
- java.lang.Object
-
- javafx.beans.binding.NumberExpressionBase
-
- javafx.beans.binding.DoubleExpression
-
- javafx.beans.property.ReadOnlyDoubleProperty
-
- javafx.beans.property.DoubleProperty
-
- javafx.beans.property.DoublePropertyBase
-
- javafx.beans.property.SimpleDoubleProperty
-
- org.reactfx.inhibeans.property.SimpleDoubleProperty
-
- All Implemented Interfaces:
javafx.beans.binding.NumberExpression
,javafx.beans.Observable
,javafx.beans.property.Property<java.lang.Number>
,javafx.beans.property.ReadOnlyProperty<java.lang.Number>
,javafx.beans.value.ObservableDoubleValue
,javafx.beans.value.ObservableNumberValue
,javafx.beans.value.ObservableValue<java.lang.Number>
,javafx.beans.value.WritableDoubleValue
,javafx.beans.value.WritableNumberValue
,javafx.beans.value.WritableValue<java.lang.Number>
,Guardian
,Observable
,Property<java.lang.Number>
,ObservableValue<java.lang.Number>
@Deprecated public class SimpleDoubleProperty extends javafx.beans.property.SimpleDoubleProperty implements Property<java.lang.Number>
Deprecated.Inhibitory version ofSimpleDoubleProperty
.
-
-
Field Summary
Fields Modifier and Type Field Description private int
blocked
Deprecated.private boolean
fireOnRelease
Deprecated.
-
Constructor Summary
Constructors Constructor Description SimpleDoubleProperty()
Deprecated.Superclass constructors.SimpleDoubleProperty(double initialValue)
Deprecated.SimpleDoubleProperty(java.lang.Object bean, java.lang.String name)
Deprecated.SimpleDoubleProperty(java.lang.Object bean, java.lang.String name, double initialValue)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Guard
block()
Deprecated.Prevents invalidation and change events from being emitted, until the returned guard is released.protected void
fireValueChangedEvent()
Deprecated.private void
release()
Deprecated.-
Methods inherited from class javafx.beans.property.DoublePropertyBase
addListener, addListener, bind, get, invalidated, isBound, removeListener, removeListener, set, toString, unbind
-
Methods inherited from class javafx.beans.property.DoubleProperty
asObject, bindBidirectional, doubleProperty, setValue, unbindBidirectional
-
Methods inherited from class javafx.beans.binding.DoubleExpression
add, add, add, add, add, divide, divide, divide, divide, divide, doubleExpression, doubleExpression, doubleValue, floatValue, getValue, intValue, longValue, multiply, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtract, subtract
-
Methods inherited from class javafx.beans.binding.NumberExpressionBase
asString, 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, lessThanOrEqualTo, numberExpression
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.reactfx.Guardian
guardWhile, guardWhile
-
Methods inherited from interface org.reactfx.inhibeans.Observable
blockWhile, blockWhile, guard
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
-
-
-
Constructor Detail
-
SimpleDoubleProperty
public SimpleDoubleProperty()
Deprecated.Superclass constructors. ***
-
SimpleDoubleProperty
public SimpleDoubleProperty(double initialValue)
Deprecated.
-
SimpleDoubleProperty
public SimpleDoubleProperty(java.lang.Object bean, java.lang.String name)
Deprecated.
-
SimpleDoubleProperty
public SimpleDoubleProperty(java.lang.Object bean, java.lang.String name, double initialValue)
Deprecated.
-
-
Method Detail
-
block
public Guard block()
Deprecated.Description copied from interface:Observable
Prevents invalidation and change events from being emitted, until the returned guard is released.- Specified by:
block
in interfaceObservable
- Returns:
- a
Guard
instance that can be released to resume the delivery of invalidation and change events. If this observable has been invalidated one or more times before the guard is released, a single notification is passed to invalidation and change listeners of this observable. The returnedGuard
isAutoCloseable
, which makes it convenient to use in try-with-resources.
-
release
private void release()
Deprecated.
-
fireValueChangedEvent
protected void fireValueChangedEvent()
Deprecated.- Overrides:
fireValueChangedEvent
in classjavafx.beans.property.DoublePropertyBase
-
-