Reports protected fields.

Constants (that is, variables marked static or final) are not reported.

Example:


  public class A {
    protected Object object;              // warning
    protected final static int MODE = 0;  // constant, no warning
  }