Hello, I've used the wsdl2java command-line tool to create a client stub for my WSDL. The code works fine, however now I have hundreds of warnings in Eclipse and my ant builds, pointing to the generated code. Some of these include:
* Class is a raw type. References to generic type Class<T> should be parameterized * Empty block should be documented * HashSet is a raw type. References to generic type HashSet<E> should be parameterized * The local variable other is never read Now I realize that I can go into the compiler settings within Eclipse and turn off these warnings for a project, but I would like to receive these warning for code my team has generated. Does anyone have any suggestions around suppressing/fixing these warnings? Thanks, Leo
