Package org.reactfx.inhibeans.value
Class ObservableValueBase<T>
java.lang.Object
javafx.beans.value.ObservableValueBase<T>
org.reactfx.inhibeans.value.ObservableValueBase<T>
- All Implemented Interfaces:
javafx.beans.Observable
,javafx.beans.value.ObservableValue<T>
,Guardian
,Observable
,ObservableValue<T>
@Deprecated
public abstract class ObservableValueBase<T>
extends javafx.beans.value.ObservableValueBase<T>
implements ObservableValue<T>
Deprecated.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate int
Deprecated.private boolean
Deprecated. -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class javafx.beans.value.ObservableValueBase
addListener, addListener, removeListener, removeListener
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.reactfx.Guardian
guardWhile, guardWhile
Methods inherited from interface javafx.beans.Observable
addListener, removeListener
Methods inherited from interface org.reactfx.inhibeans.Observable
blockWhile, blockWhile, guard
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Field Details
-
blocked
private int blockedDeprecated. -
fireOnRelease
private boolean fireOnReleaseDeprecated.
-
-
Constructor Details
-
ObservableValueBase
public ObservableValueBase()Deprecated.
-
-
Method Details
-
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.value.ObservableValueBase<T>
-