documentation still claims its “all”, but its “deprecation” and “rawtypes” ?
With “deprecation” and “rawtypes”, ironically Eclipse will warn with something like this
Unnecessary @SuppressWarnings("deprecation") There should be an option to specify the suppressions explicitly (e.g. to be able to also set “javadoc”, or eventually “all”)
Not sure whether I would be eligible to open a new ticket for this.
See for background. That bug added support for adding
to generated metamodel source files.
Unfortunately,
@SuppressWarnings("all")
is an Eclipe-ism and not guaranteed to actually do anything.In fact the JDK compiler ignores it:
Instead of suppressing
"all"
which is technically meaningless, it should suppress (at least)"rawtypes"
and probably"unchecked"
too.