Uses of Interface
edu.umd.cs.findbugs.classfile.IClassObserver
-
Packages that use IClassObserver 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.bugReporter edu.umd.cs.findbugs.sarif The package providing aBugReporter
implementation which produces report in SARIF format. -
-
Uses of IClassObserver in edu.umd.cs.findbugs
Subinterfaces of IClassObserver in edu.umd.cs.findbugs Modifier and Type Interface Description interface
BugReporter
Generic interface for bug reporter objects.(package private) interface
ConfigurableBugReporter
The interface provides configurable methods toTextUICommandLine
.Classes in edu.umd.cs.findbugs that implement IClassObserver Modifier and Type Class Description class
AbstractBugReporter
An abstract class which provides much of the functionality required of all BugReporter objects.class
BugCollectionBugReporter
class
BugReportDispatcher
Bug reporter delegate actual operation to each bug reporter in the list.class
CategoryFilteringBugReporter
Filter reported warnings by category.class
DelegatingBugReporter
A BugReporter which delegates all method calls to another BugReporter.class
EmacsBugReporter
BugReporter to output warnings in Emacs format.class
ErrorCountingBugReporter
A delegating bug reporter which counts reported bug instances, missing classes, and serious analysis errors.class
ExcludingHashesBugReporter
class
FilterBugReporter
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
SuppressionMatcherBugReporter
(package private) class
SynchronizedBugReporter
An implementation ofBugReporter
that synchronize all method invocations.class
TextUIBugReporter
Base class for BugReporters which provides convenient formatting and reporting of warnings and analysis errors.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 IClassObserver Modifier and Type Field Description private java.util.List<IClassObserver>
FindBugs2. classObserverList
Methods in edu.umd.cs.findbugs with parameters of type IClassObserver Modifier and Type Method Description void
FindBugs2. addClassObserver(IClassObserver classObserver)
void
IFindBugsEngine. addClassObserver(IClassObserver classObserver)
Add an IClassObserver. -
Uses of IClassObserver in edu.umd.cs.findbugs.bugReporter
Classes in edu.umd.cs.findbugs.bugReporter that implement IClassObserver Modifier and Type Class Description class
BugReporterDecorator
Abstract base class for bug reporters defined as plugins.class
MaxRankDecorator
class
SuppressionDecorator
-
Uses of IClassObserver in edu.umd.cs.findbugs.sarif
Classes in edu.umd.cs.findbugs.sarif that implement IClassObserver Modifier and Type Class Description class
SarifBugReporter
-