Create a set of methods that would allow binding of a sing property type to other property type, something like
property1.bind(Bindings.convert( Type2 e -> conversion(e), property2));
or it might be also useful directly on the Property interface:
property1.bind(property2, Type2 e -> conversion(e));
should be possible to implement it using defender methods by calling the standard bind() method.
property1.bind(Bindings.convert( Type2 e -> conversion(e), property2));
or it might be also useful directly on the Property interface:
property1.bind(property2, Type2 e -> conversion(e));
should be possible to implement it using defender methods by calling the standard bind() method.