< prev index next >

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

Print this page




 160          * is not located in the same source file.
 161          */
 162         AUXILIARYCLASS("auxiliaryclass"),
 163 
 164         /**
 165          * Warn about use of unnecessary casts.
 166          */
 167         CAST("cast"),
 168 
 169         /**
 170          * Warn about issues related to classfile contents
 171          */
 172         CLASSFILE("classfile"),
 173 
 174         /**
 175          * Warn about use of deprecated items.
 176          */
 177         DEPRECATION("deprecation"),
 178 
 179         /**





 180          * Warn about items which are documented with an {@code @deprecated} JavaDoc
 181          * comment, but which do not have {@code @Deprecated} annotation.
 182          */
 183         DEP_ANN("dep-ann"),
 184 
 185         /**
 186          * Warn about division by constant integer 0.
 187          */
 188         DIVZERO("divzero"),
 189 
 190         /**
 191          * Warn about empty statement after if.
 192          */
 193         EMPTY("empty"),
 194 
 195         /**
 196          * Warn about issues regarding module exports.
 197          */
 198         EXPORTS("exports"),
 199 




 160          * is not located in the same source file.
 161          */
 162         AUXILIARYCLASS("auxiliaryclass"),
 163 
 164         /**
 165          * Warn about use of unnecessary casts.
 166          */
 167         CAST("cast"),
 168 
 169         /**
 170          * Warn about issues related to classfile contents
 171          */
 172         CLASSFILE("classfile"),
 173 
 174         /**
 175          * Warn about use of deprecated items.
 176          */
 177         DEPRECATION("deprecation"),
 178 
 179         /**
 180          * Warn about compiler generation of a default constructor.
 181          */
 182         DEFAULT_CTOR("default-ctor"),
 183 
 184         /**
 185          * Warn about items which are documented with an {@code @deprecated} JavaDoc
 186          * comment, but which do not have {@code @Deprecated} annotation.
 187          */
 188         DEP_ANN("dep-ann"),
 189 
 190         /**
 191          * Warn about division by constant integer 0.
 192          */
 193         DIVZERO("divzero"),
 194 
 195         /**
 196          * Warn about empty statement after if.
 197          */
 198         EMPTY("empty"),
 199 
 200         /**
 201          * Warn about issues regarding module exports.
 202          */
 203         EXPORTS("exports"),
 204 


< prev index next >