org.reactfx.inhibeans.binding.Binding 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.inhibeans.binding;
import org.reactfx.inhibeans.value.ObservableValue;
import org.reactfx.value.Val;
@Deprecated
public interface Binding
extends javafx.beans.binding.Binding, ObservableValue {
/**
* @deprecated Use {@link Val#suspendable(javafx.beans.value.ObservableValue)}.
*/
@Deprecated
public static Binding wrap(javafx.beans.value.ObservableValue source) {
return new ObjectBinding() {
{ bind(source); }
@Override
protected T computeValue() { return source.getValue(); }
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy