edu.umd.cs.findbugs.ConfigurableBugReporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotbugs Show documentation
Show all versions of spotbugs Show documentation
SpotBugs: Because it's easy!
The newest version!
package edu.umd.cs.findbugs;
import java.io.PrintStream;
/**
* The interface provides configurable methods to {@link TextUICommandLine}.
*/
interface ConfigurableBugReporter extends BugReporter {
void setRankThreshold(int threshold);
void setUseLongBugCodes(boolean useLongBugCodes);
void setOutputStream(PrintStream outputStream);
}