Bindings are one of the key features of the JavaFX language, because
they simplify one´s life tremendously. By reducing the amount of
boilerplate code, which is usually needed to keep the objects in an
application in-sync, the developer can concentrate on the really
important things. (You know, like a cool looking UI.) 
Unfortunately Java objects do not provide this capabilities for their fields. That means the boilerplate code has to be written manually. This article will show a solution to bind properties of Java objects.
[Read More]
