- [ ] add a simple way to create `ReadOnlyBinding<T>` from a `Binding<T>`. Where to add helper methods like this? ```java public static <T> ReadOnlyBinding<T> fromBinding(Binding<T> binding) { return new ReadOnlyBinding<T>() { private final Binding<T> internal = binding; @Override public T get() { return internal.get(); } }; } ``` - [ ] ensure that most properties are also exposed as read-only bindings; double check _set binding_ vs _bind_ - [ ] document which accessors should be available for bindable properties
add a simple way to create
ReadOnlyBinding<T>from aBinding<T>. Where to add helper methods like this?ensure that most properties are also exposed as read-only bindings; double check set binding vs bind
document which accessors should be available for bindable properties