Reports annotations in a shorthand form and suggests rewriting them in a normal form with an attribute name.
Example:
@SuppressWarnings("foo")
After the quick-fix is applied:
@SuppressWarnings(value = "foo")