I'm a newbie on JAXB. Down below is the definition of JAXB given by Sun.
Questions is, using JDOM with Crimson, can't we achieve the same functionality?
What are the significant features that JAXB has?
_______________________
(JAXB)XML-to-Java Object Binding Facility
With the JAXB facility, the developer can create two-way mapping between XML documents
and
Java objects. Given an XML schema, the JAXB compiler generates a set of Java class
files that contain all of the code to parse XML documents based on the schema. A
developer using the generated classes can build a Java object tree representing an XML
document, manipulate the content of the tree, and regenerate XML documents from the
tree.