Package org.reactfx.value
Class SuspendableVarWrapper<T>
- java.lang.Object
-
- org.reactfx.ObservableBase<O,T>
-
- org.reactfx.SuspendableBase<java.util.function.Consumer<? super T>,T,T>
-
- org.reactfx.value.SuspendableValWrapper<T>
-
- org.reactfx.value.SuspendableVarWrapper<T>
-
- All Implemented Interfaces:
javafx.beans.Observable
,javafx.beans.property.Property<T>
,javafx.beans.property.ReadOnlyProperty<T>
,javafx.beans.value.ObservableValue<T>
,javafx.beans.value.WritableValue<T>
,Observable<java.util.function.Consumer<? super T>>
,ProperObservable<java.util.function.Consumer<? super T>,T>
,Suspendable
,ProperVal<T>
,SuspendableVal<T>
,SuspendableVar<T>
,Val<T>
,Var<T>
class SuspendableVarWrapper<T> extends SuspendableValWrapper<T> implements SuspendableVar<T>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SuspendableVarWrapper(Var<T> p)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
bind(javafx.beans.value.ObservableValue<? extends T> other)
boolean
isBound()
void
setValue(T value)
void
unbind()
-
Methods inherited from class org.reactfx.value.SuspendableValWrapper
getValue, headOf, sizeOf, tailOf
-
Methods inherited from class org.reactfx.SuspendableBase
initialAccumulator, isSuspended, observeInputs, reduce, suspend
-
Methods inherited from class org.reactfx.ObservableBase
addObserver, enqueueNotifications, equals, forEachObserver, getObserverCount, hashCode, isObservingInputs, newObserver, notifyObservers, notifyObservers, observe, removeObserver, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.reactfx.Observable
addObserver, observe, removeObserver
-
Methods inherited from interface org.reactfx.ProperObservable
defaultEquals, defaultHashCode, defaultToString, notifyObservers
-
Methods inherited from interface org.reactfx.value.ProperVal
defaultNotificationAccumulator
-
Methods inherited from interface org.reactfx.Suspendable
suspend, suspendWhen, suspendWhile, suspendWhile
-
Methods inherited from interface org.reactfx.value.Val
addInvalidationObserver, addListener, addListener, animate, animate, asList, asVar, changes, conditionOn, conditionOnShowing, filter, flatMap, getOpt, getOrElse, getOrSupply, getOrThrow, ifPresent, invalidations, isEmpty, isPresent, map, mapDynamic, observeChanges, observeInvalidations, orElse, orElseConst, pin, removeInvalidationObserver, removeListener, removeListener, selectVar, selectVar, values
-
Methods inherited from interface org.reactfx.value.Var
bindBidirectional, getBean, getName, mapBidirectional, suspendable, unbindBidirectional
-
-
-
-
Method Detail
-
bind
public void bind(javafx.beans.value.ObservableValue<? extends T> other)
- Specified by:
bind
in interfacejavafx.beans.property.Property<T>
-
isBound
public boolean isBound()
- Specified by:
isBound
in interfacejavafx.beans.property.Property<T>
-
unbind
public void unbind()
- Specified by:
unbind
in interfacejavafx.beans.property.Property<T>
-
-