JAXB and JavaFX 2
817417May 2 2012 — edited Jun 27 2013JAXB creates Java bean definitions out of XML schemas and makes it easy to read and write XML files to/from Java applications. I also like to use it to ensure that I have a clean data model before I start coding. The property model that JAXB uses is the classical beans model.
Is anyone aware of any work being done to enable the use of JAXB with the JavaFX property model? There seem to me to be two possibilities:
1) JAXB processor (e.g. xjc) generates Java classes containing JavaFX properties; or
2) Some mechanism for binding classical properties to JavaFX properties.
Any thoughts?
Steve