org.reactfx.value.SuspendableVarWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reactfx Show documentation
Show all versions of reactfx Show documentation
Reactive event streams for JavaFX
package org.reactfx.value;
import javafx.beans.value.ObservableValue;
class SuspendableVarWrapper
extends SuspendableValWrapper
implements SuspendableVar {
private final Var delegate;
protected SuspendableVarWrapper(Var p) {
super(p);
this.delegate = p;
}
@Override
public void bind(ObservableValue extends T> other) {
delegate.bind(other);
}
@Override
public boolean isBound() {
return delegate.isBound();
}
@Override
public void unbind() {
delegate.unbind();
}
@Override
public void setValue(T value) {
delegate.setValue(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy