< prev index next >

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

Print this page




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





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




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


< prev index next >