Uses of Interface
edu.umd.cs.findbugs.Detector2
-
Packages that use Detector2 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.asm edu.umd.cs.findbugs.bcel edu.umd.cs.findbugs.detect edu.umd.cs.findbugs.plan -
-
Uses of Detector2 in edu.umd.cs.findbugs
Classes in edu.umd.cs.findbugs that implement Detector2 Modifier and Type Class Description class
DetectorToDetector2Adapter
An adapter allowing classes implementing the Detector interface to support the new Detector2 interface.class
NonReportingDetectorToDetector2Adapter
Methods in edu.umd.cs.findbugs that return Detector2 Modifier and Type Method Description Detector2
DetectorFactory. createDetector2(BugReporter bugReporter)
Create a Detector2 instance.Constructors in edu.umd.cs.findbugs with parameters of type Detector2 Constructor Description BugInstance(Detector2 detector, java.lang.String type, int priority)
Create a new BugInstance. -
Uses of Detector2 in edu.umd.cs.findbugs.asm
Classes in edu.umd.cs.findbugs.asm that implement Detector2 Modifier and Type Class Description class
ClassNodeDetector
Abstract base class to to reduce boilerplate needed for writing ASM-based Detectors implemented as ClassNode visitors -
Uses of Detector2 in edu.umd.cs.findbugs.bcel
Classes in edu.umd.cs.findbugs.bcel that implement Detector2 Modifier and Type Class Description class
CFGDetector
Base class for detectors that analyze CFG (and/or use CFG-based analyses). -
Uses of Detector2 in edu.umd.cs.findbugs.detect
Classes in edu.umd.cs.findbugs.detect that implement Detector2 Modifier and Type Class Description class
BuildObligationPolicyDatabase
Build the ObligationPolicyDatabase used by ObligationAnalysis.class
CheckExpectedWarnings
Check uses of the ExpectWarning and NoWarning annotations.class
CheckRelaxingNullnessAnnotation
Checks that overriding methods do not relaxNonnull
(madeCheckForNull
) on return values orCheckForNull
(madeNonnull
) on parameters.class
CheckTypeQualifiers
Check JSR-305 type qualifiers.class
FindUnsatisfiedObligation
Find unsatisfied obligations in Java methods.class
TestASM
Sample detector, using ASMclass
TestDataflowAnalysis<Fact,AnalysisType extends DataflowAnalysis<Fact>>
This detector is just a test harness to test a dataflow analysis class specified by the dataflow.classname property. -
Uses of Detector2 in edu.umd.cs.findbugs.plan
Methods in edu.umd.cs.findbugs.plan that return Detector2 Modifier and Type Method Description Detector2[]
AnalysisPass. instantiateDetector2sInPass(BugReporter bugReporter)
Instantiate all of the Detector2s in this pass and return them in a (correctly-ordered) array.
-