-
JAXB and ObservableList
If you don’t customize your schemas with JAXB, your generated classes will not handle correctly the list in your UI (using beans binding functionnality). If you have lists in your xml, you’ll probably handle them with Jtable or JList in your UI. Modifications of objects (from…
-
XML binding with JAXB 3/3 : plugins
Once you’ll have been working with JAXB basis, you’ll want to enhance what your doing. For example, in my case, I want to bind my datas with a GUI. For that, I’ll need to use beans binding (JSR 295) with netbeans. You can begin…
-
XML binding with JAXB 2/3 : customisation
This article is part 2 of the series on JAXB. On part 1, I exposed the basis of using JAXB. But you can go further with JAXB. You can heavily customize JAXB with annotations. Using the same phonebook example, you can introduce annotations in your schema to make JAXB meet…
-
XML binding with JAXB 1/3
I’ve been watching for an XML binding tool for one of my projects, which make use of XML to store datas. I looked at hibernate, which now make XML bindings, but, from what I’ve seen, the binding is managed by the relational mapping. As I do…