-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
Revive: Convertssue has been looked at and should be converted to a GitHub discussionssue has been looked at and should be converted to a GitHub discussionStatus: Needs DiscussionRequires help discussing a reported issue or provided PRRequires help discussing a reported issue or provided PR
Description
-
add a simple way to create
ReadOnlyBinding<T>from aBinding<T>. Where to add helper methods like this?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
Metadata
Metadata
Assignees
Labels
Revive: Convertssue has been looked at and should be converted to a GitHub discussionssue has been looked at and should be converted to a GitHub discussionStatus: Needs DiscussionRequires help discussing a reported issue or provided PRRequires help discussing a reported issue or provided PR