Right now one has to write
target.targetProperty().bind(
EasyBind.map(source.sourceProperty(), mapping)
);
to bind to a property. A more fluent interface like
EasyBind.map(source.sourceProperty(), mapping)
.bindTo(target.targetProperty);
would be nice.
Right now one has to write
to bind to a property. A more fluent interface like
would be nice.