Is there any Java compiler flag that one can pass to tell the compiler to disallow the use of raw types? That is, for any generic class, let the compiler force that the parameterized version be used, and throw a compilation error otherwise?
|
JDK7 (b38) introduces Maurizio Cimadamore of the javac team wrote a weblog entry about it. |
|||||||
|
|
You can configure the use of raw types within Eclipse to be a warning or an error. It's under Preferences / Java / Compiler / Errors and Warnings / Generic types / Usage of a raw type.
|
|||||
|
|
You can get it to warn you via: -Xlint:unchecked This will generate warning in some, but not all, cases of missing generics.
Given the warning you can then go back and fix up the code to add the generics to the declarations. Not ideal, and if I remember right it still won't catch everything. |
||||
|
|