
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;
public interface Binding
extends javafx.beans.binding.Binding, ObservableValue {
public static Binding wrap(javafx.beans.value.ObservableValue source) {
return new ObjectBinding() {
{ bind(source); }
@Override
protected T computeValue() { return source.getValue(); }
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy