Should I use JavaFx properties?

Posted by Mike G on Programmers See other posts from Programmers or by Mike G
Published on 2013-08-05T22:33:41Z Indexed on 2014/06/06 15:41 UTC
Read the original article Hit count: 275

Filed under:
|
|
|
|

I'm usually very careful to keep my Model, View, and Controller code separate. The thing is JavaFx properties are so convenient to bind them all together. The issue is that it makes my entire code design dependent on JavaFx, which I feel I should not being doing. I should be able to change the view without changing too much of the model and controller.

So should I ignore the convenience of JavaFx properties, or should I embrace them and the fact that it reduces my codes flexibility.

© Programmers or respective owner

Related posts about java

Related posts about design