Package edu.umd.cs.findbugs.bugReporter
Class SuppressionDecorator
- java.lang.Object
-
- edu.umd.cs.findbugs.DelegatingBugReporter
-
- edu.umd.cs.findbugs.bugReporter.BugReporterDecorator
-
- edu.umd.cs.findbugs.bugReporter.SuppressionDecorator
-
- All Implemented Interfaces:
RepositoryLookupFailureCallback,BugReporter,IClassObserver,IErrorLogger
public class SuppressionDecorator extends BugReporterDecorator
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.Stringcategory(package private) java.util.HashSet<java.lang.String>check(package private) java.util.HashSet<java.lang.String>dontCheck-
Fields inherited from class edu.umd.cs.findbugs.bugReporter.BugReporterDecorator
plugin
-
Fields inherited from interface edu.umd.cs.findbugs.BugReporter
NORMAL, SILENT
-
-
Constructor Summary
Constructors Constructor Description SuppressionDecorator(ComponentPlugin<BugReporterDecorator> plugin, BugReporter delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidprocessPackageList(java.io.Reader rawIn)voidreportBug(BugInstance bugInstance)Report a bug.-
Methods inherited from class edu.umd.cs.findbugs.bugReporter.BugReporterDecorator
construct
-
Methods inherited from class edu.umd.cs.findbugs.DelegatingBugReporter
addObserver, finish, getBugCollection, getDelegate, getProjectStats, logError, logError, observeClass, reportMissingClass, reportMissingClass, reportQueuedErrors, reportSkippedAnalysis, setErrorVerbosity, setPriorityThreshold
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface edu.umd.cs.findbugs.classfile.IErrorLogger
reportMissingClass
-
-
-
-
Constructor Detail
-
SuppressionDecorator
public SuppressionDecorator(ComponentPlugin<BugReporterDecorator> plugin, BugReporter delegate)
-
-
Method Detail
-
processPackageList
private void processPackageList(@WillClose java.io.Reader rawIn) throws java.io.IOException- Parameters:
rawIn-- Throws:
java.io.IOException
-
reportBug
public void reportBug(@Nonnull BugInstance bugInstance)Description copied from interface:BugReporterReport a bug. The implementation may report the bug immediately, or queue it for later.- Specified by:
reportBugin interfaceBugReporter- Overrides:
reportBugin classDelegatingBugReporter- Parameters:
bugInstance- object describing the bug instance
-
-