@Documented @Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface SupportedLintOptions
@SupportedLintOptions({"dotequals"})
, then the checker accepts the command-line option
-Alint=-dotequals
.
This annotation is optional and many checkers do not contain an @SupportedLintOptions
annotation.
The SourceChecker.getSupportedLintOptions()
method can construct its result from the
value of this annotation.
SupportedOptions
public abstract String[] value