org.reactfx.value.VarWrapper 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.value;
import javafx.beans.property.Property;
import javafx.beans.value.ObservableValue;
class VarWrapper extends ValWrapper> implements Var {
VarWrapper(Property delegate) {
super(delegate);
}
@Override
public void bind(ObservableValue extends T> other) {
getDelegate().bind(other);
}
@Override
public boolean isBound() {
return getDelegate().isBound();
}
@Override
public void unbind() {
getDelegate().unbind();
}
@Override
public void setValue(T value) {
getDelegate().setValue(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy