This rule allows you to track the usage of the @SuppressWarnings mechanism.

Noncompliant code example

In case "listOfWarnings=unused" :

@SuppressWarnings("unused")

Compliant code example

In case "listOfWarnings=all" :

@SuppressWarnings("unchecked")
@SuppressWarnings("unused")