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 richtextfx Show documentation
Show all versions of richtextfx Show documentation
FX-Text-Area for formatted text and other special effects.
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 - 2025 Weber Informatics LLC | Privacy Policy