com.drew.lang.annotations
Annotation Type SuppressWarnings


public @interface SuppressWarnings

Used to suppress specific code analysis warnings produced by the Findbugs tool.

Author:
Andreas Ziermann

Required Element Summary
 String justification
          An explanation of why it is valid to suppress the warning in a particular situation/context.
 String value
          The name of the warning to be suppressed.
 

Element Detail

value

public abstract String value
The name of the warning to be suppressed.

Returns:
The name of the warning to be suppressed.

justification

public abstract String justification
An explanation of why it is valid to suppress the warning in a particular situation/context.

Returns:
An explanation of why it is valid to suppress the warning in a particular situation/context.


Copyright © 2012. All Rights Reserved.