All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.reactfx.value.VarWrapper Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
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 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