开发者

How to get rid of generics warnings in code generated from xmlbeans-maven-plugin?

I have some code generated from xsd files by 开发者_Python百科xmlbeans-maven-plugin. Unfortunately generated code uses raw collection types, like:

java.util.List targetList = new java.util.ArrayList();
get_store().find_all_element_users(CURRENCY$0, targetList);
Currency[] result = new Currency[targetList.size()];
targetList.toArray(result);

which causes lots of warnings.

Is there a way to force the plugin to generate generic types or generate @SupressWarnings annotations? I use maven v 2.0.9, xmlbeans-maven-plugin v 2.3.3


You can probably just generate generified code using a javaSource parameter of 1.5.


You should try setting the source and target jdk versions to pre-1.5 to get rid of those warnings. Setting source version

e.g.

          <configuration>
               <source>1.4</source>
               <target>1.4</target>
           </configuration>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜