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

Noncompliant Code Example

In case "listOfWarnings=unchecked"

@SuppressWarnings("all")

Compliant Solution

In case "listOfWarnings=unchecked"

@SuppressWarnings("unchecked")