edu.umd.cs.findbugs.annotations
Annotation Type NoWarning


@Retention(value=CLASS)
public @interface NoWarning

Annotation indicating that no FindBugs warning is expected. See http://code.google.com/p/findbugs/wiki/FindbugsTestCases

Author:
David Hovemeyer

Required Element Summary
 String value
          The value indicates the bug code (e.g., NP) or bug pattern (e.g., IL_INFINITE_LOOP) that should not be reported
 
Optional Element Summary
 Confidence confidence
          Want no warning at this priority or higher
 int rank
          Want no warning at this rank or scarier
 

Element Detail

value

public abstract String value
The value indicates the bug code (e.g., NP) or bug pattern (e.g., IL_INFINITE_LOOP) that should not be reported

confidence

public abstract Confidence confidence
Want no warning at this priority or higher

Default:
edu.umd.cs.findbugs.annotations.Confidence.LOW

rank

public abstract int rank
Want no warning at this rank or scarier

Default:
20


Copyright © 2012 Ness Computing, Inc.. All Rights Reserved.