All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.umd.cs.findbugs.ConfigurableBugReporter Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy