Uses of Class
edu.umd.cs.findbugs.TextUIBugReporter
-
Packages that use TextUIBugReporter Package Description edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs
), the object model classes for bug instances (BugInstance
,BugAnnotation
), and other miscellany.edu.umd.cs.findbugs.sarif The package providing aBugReporter
implementation which produces report in SARIF format. -
-
Uses of TextUIBugReporter in edu.umd.cs.findbugs
Subclasses of TextUIBugReporter in edu.umd.cs.findbugs Modifier and Type Class Description class
BugCollectionBugReporter
class
EmacsBugReporter
BugReporter to output warnings in Emacs format.class
HTMLBugReporter
class
PrintingBugReporter
A simple BugReporter which simply prints the formatted message to the output stream.class
SortingBugReporter
A BugReporter which stores all of the reported bug instances, and sorts them by class name before printing them.class
XDocsBugReporter
BugReporter to output warnings in xdocs format for Maven.class
XMLBugReporter
Report warnings as an XML document.Fields in edu.umd.cs.findbugs with type parameters of type TextUIBugReporter Modifier and Type Field Description private java.util.List<TextUIBugReporter>
BugReportDispatcher. reporters
private java.util.List<TextUIBugReporter>
TextUICommandLine. reporters
Methods in edu.umd.cs.findbugs with parameters of type TextUIBugReporter Modifier and Type Method Description private void
TextUICommandLine. addDistinctBugReporter(TextUIBugReporter reporter)
Adds a reporter to the aggregating list of reporters, skipping the operation if a duplicate reporter is already present.(package private) java.lang.String
TextUICommandLine. handleOutputFilePath(TextUIBugReporter reporter, java.lang.String optionExtraPart)
ParseoptionExtraPart
and configure if it contains the output file path such as":withMessages=path/to/file.extension"
and"=/absolute/path/to/file.extension"
.boolean
TextUIBugReporter. isDuplicateOf(TextUIBugReporter other)
Method parameters in edu.umd.cs.findbugs with type arguments of type TextUIBugReporter Modifier and Type Method Description private void
BugReportDispatcher. forEach(java.util.function.Consumer<TextUIBugReporter> consumer)
Consume each reporter one by one, and throw an exception if some of them.Constructor parameters in edu.umd.cs.findbugs with type arguments of type TextUIBugReporter Constructor Description BugReportDispatcher(java.util.Collection<TextUIBugReporter> reporters)
-
Uses of TextUIBugReporter in edu.umd.cs.findbugs.sarif
Subclasses of TextUIBugReporter in edu.umd.cs.findbugs.sarif Modifier and Type Class Description class
SarifBugReporter
-