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

changeset 1384
bf54daa9dcd8
parent 1313
873ddd9f4900
child 1442
fcf89720ae71
equal deleted inserted replaced
1383:b980e8e6aabf 1384:bf54daa9dcd8
126 126
127 /** 127 /**
128 * Categories of warnings that can be generated by the compiler. 128 * Categories of warnings that can be generated by the compiler.
129 */ 129 */
130 public enum LintCategory { 130 public enum LintCategory {
131 /**
132 * Warn when code refers to a auxiliary class that is hidden in a source file (ie source file name is
133 * different from the class name, and the type is not properly nested) and the referring code
134 * is not located in the same source file.
135 */
136 AUXILIARYCLASS("auxiliaryclass"),
137
131 /** 138 /**
132 * Warn about use of unnecessary casts. 139 * Warn about use of unnecessary casts.
133 */ 140 */
134 CAST("cast"), 141 CAST("cast"),
135 142

mercurial