I am writing an XML schema file and I generate classes from it. The generated classes are always public. What I want is to have the classes package-visible only. Is this possible ? If yes, please give me a hint.
Thank you!
|
When using wsimport, it's only possible to generate public classes. So your only option then is to search/replace in the generated files, if you want to make them package protected. However, depending on what you want to do with the generated classes, it may not make sense to make them package protected. |
|||
|
|
|
You could write an XJC plug-in to accomplish this: |
|||
|
|
public- it won't work otherwise. – skaffman Mar 29 '11 at 8:59