I have one schema file that I'm using to generate java files. I want to specify in the schema file different packages to certain ComplexTypes. For example: All the Buttons java files should be inside a buttons package.
How do I do it? I'm using xjc ant task. Thank you.
Further details:
commons.xsd define, Foo, Bar, ButtonA, ButtonB
I want to folder (package) definition will be like that:
root
- Foo (File)
- Bar (File)
- buttons (Folder)
- ButtonA (File)
- ButtonB (File)
Thank you.