Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 0 down vote accepted

I believe it is not possible with current JAXB implementation. Packages are quite strictly associated with namespaces, so it is unlikely that you could put classes from one schema into different packages.

share|improve this answer
Thank you. I configured several namespaces and used episode plugin ... – Rotem Mar 4 '12 at 14:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.