Reports an instance variable that is declared without any access modifier (also known as package-private).

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

Example:


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