src/share/classes/com/sun/tools/javac/code/Lint.java

changeset 1384
bf54daa9dcd8
parent 1313
873ddd9f4900
child 1442
fcf89720ae71
     1.1 --- a/src/share/classes/com/sun/tools/javac/code/Lint.java	Wed Oct 31 13:48:15 2012 -0700
     1.2 +++ b/src/share/classes/com/sun/tools/javac/code/Lint.java	Thu Nov 01 10:48:36 2012 +0100
     1.3 @@ -129,6 +129,13 @@
     1.4       */
     1.5      public enum LintCategory {
     1.6          /**
     1.7 +         * Warn when code refers to a auxiliary class that is hidden in a source file (ie source file name is
     1.8 +         * different from the class name, and the type is not properly nested) and the referring code
     1.9 +         * is not located in the same source file.
    1.10 +         */
    1.11 +        AUXILIARYCLASS("auxiliaryclass"),
    1.12 +
    1.13 +        /**
    1.14           * Warn about use of unnecessary casts.
    1.15           */
    1.16          CAST("cast"),

mercurial