I have a couple of huge XML schema definition (XSD) files and I want to generate only for a subset of the defined types the corresponding Java classes.
More precisely I have a list of "root" types that I want to transform into Java classes including all types needed by these root types.
Is it possible to define some "root" types in a JAXB bindings file and tell JAXB to transform only them with all their dependent types into Java classes and ignore all the other unnecessary types?
Thanks in advance.