-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support package-info for package annotation #34
Comments
What is actually missing here? Is it just the flags that are wrong or is there something else missing? |
ClassCreator is usefull to generate a class with annotation /methods/fields but when I need to annotate only package without class. What can I use ? here is an example: |
package-info is just a normal class file, can't you just generate a class named package-info and add class level anntoations? |
I have check by dumping my class file. Here is the result in idea:
|
I expect to have :
|
I need feedback, for implementation of package info support before going further. |
Are you sure it does not already work? Just create a class called package-info |
I will retry with class creator |
indeed I can not test it because the important parameter is an enum. and enum has been fixed few weeks ago. So I will wait release to test it on my project . |
the need is to support package annotation.
In cxf patch, I need to support this generation:
https://github.com/apache/cxf/blob/master/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/WrapperClassGenerator.java#L234
The text was updated successfully, but these errors were encountered: