-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added implementation for FxProperty #3022
base: master
Are you sure you want to change the base?
Conversation
The problem is: I'm totally unfamiliar with JavaFX. So is @rspilker. However, you've more than deserved the right to sign off on stuff like this. Take my review with a grain of salt; I am not capable of providing feedback on whether this is suitable for the problem domain. A few nitpicks before we integrate this into the main branch:
|
Thanks for this detailed review 👍 My knowledge of JavaFX is also quite limited, the implementation is based on the input in the linked issue and the JavaFX wiki. It was just a feature that seems to be quite easy to implement and maintain and also removes a lot of boilerplate so it fulfills the requirements for a new feature.
|
Finally! Thank you so much! Is there any updates on when the merge might happen? |
Any updates on this? |
Please read the linked issue. TL;DR unclear requirements |
This PR fixes #521
I just updated the branch and adjusted a few minor things to be comaptible with the current master. It seems to be complete as there were no complaints about missing stuff in the linked issue. The implementation is based on the JavaFX Property Architecture documentation. For each field
@FxProperty
generates a final getter, a final setter (optional) and a property getter.