Uses of Interface
edu.umd.cs.findbugs.BugReporter
Packages that use BugReporter
Package
Description
Main package for the FindBugs application - contains the engine class
(
FindBugs
), the object model classes for bug
instances (BugInstance
,
BugAnnotation
), and other miscellany.A high-level abstraction layer for codebases, classes, and components of
classes (methods, fields, instructions, etc.).
Implementations of the interfaces in the edu.umd.cs.findbugs.classfile
package: the core classes of the FindBugs classfile/classpath support
layer.
The package providing a
BugReporter
implementation which produces report in SARIF format.-
Uses of BugReporter in edu.umd.cs.findbugs
Subinterfaces of BugReporter in edu.umd.cs.findbugsModifier and TypeInterfaceDescription(package private) interface
The interface provides configurable methods toTextUICommandLine
.Classes in edu.umd.cs.findbugs that implement BugReporterModifier and TypeClassDescriptionclass
An abstract class which provides much of the functionality required of all BugReporter objects.class
class
Bug reporter delegate actual operation to each bug reporter in the list.class
Filter reported warnings by category.class
A BugReporter which delegates all method calls to another BugReporter.class
BugReporter to output warnings in Emacs format.class
A delegating bug reporter which counts reported bug instances, missing classes, and serious analysis errors.class
class
class
class
A simple BugReporter which simply prints the formatted message to the output stream.class
A BugReporter which stores all of the reported bug instances, and sorts them by class name before printing them.(package private) class
An implementation ofBugReporter
that synchronize all method invocations.class
Base class for BugReporters which provides convenient formatting and reporting of warnings and analysis errors.class
BugReporter to output warnings in xdocs format for Maven.class
Report warnings as an XML document.Fields in edu.umd.cs.findbugs declared as BugReporterModifier and TypeFieldDescriptionprivate BugReporter
FindBugs2.bugReporter
protected BugReporter
ResourceTrackingDetector.bugReporter
private final BugReporter
DelegatingBugReporter.delegate
private final BugReporter
SynchronizedBugReporter.delegate
private final BugReporter
BugAccumulator.reporter
Methods in edu.umd.cs.findbugs that return BugReporterModifier and TypeMethodDescriptionstatic BugReporter
FindBugs.configureBaselineFilter
(BugReporter bugReporter, String baselineFileName) Configure a baseline bug instance filter.static BugReporter
FindBugs.configureFilter
(BugReporter bugReporter, String filterFileName, boolean include) Configure the (bug instance) Filter for the given DelegatingBugReporter.protected abstract BugReporter
ByteCodePatternDetector.getBugReporter()
FindBugs2.getBugReporter()
IFindBugsEngine.getBugReporter()
Get the BugReporter.protected BugReporter
DelegatingBugReporter.getDelegate()
BugCollectionBugReporter.getRealBugReporter()
TextUIBugReporter.getRealBugReporter()
Methods in edu.umd.cs.findbugs with parameters of type BugReporterModifier and TypeMethodDescriptionstatic BugReporter
FindBugs.configureBaselineFilter
(BugReporter bugReporter, String baselineFileName) Configure a baseline bug instance filter.static BugReporter
FindBugs.configureFilter
(BugReporter bugReporter, String filterFileName, boolean include) Configure the (bug instance) Filter for the given DelegatingBugReporter.DetectorFactory.create
(BugReporter bugReporter) Deprecated.Use createDetector2 in new codeDetectorFactory.ReflectionDetectorCreator.createDetector
(BugReporter bugReporter) DetectorFactory.createDetector2
(BugReporter bugReporter) Create a Detector2 instance.DetectorFactory.ReflectionDetectorCreator.createDetector2
(BugReporter bugReporter) static XClass
Lookup.findImplementor
(XClass clazz, String name, String signature, boolean isStatic, BugReporter bugReporter) static org.apache.bcel.classfile.JavaClass
Lookup.findSuperDefiner
(org.apache.bcel.classfile.JavaClass clazz, String name, String signature, BugReporter bugReporter) static XClass
Lookup.findSuperImplementor
(XClass clazz, String name, String signature, boolean isStatic, BugReporter bugReporter) static String
Lookup.findSuperImplementor
(String clazz, String name, String signature, BugReporter bugReporter) static org.apache.bcel.classfile.JavaClass
Lookup.findSuperImplementor
(org.apache.bcel.classfile.JavaClass clazz, String name, String signature, BugReporter bugReporter) static XMethod
Lookup.findSuperImplementorAsXMethod
(org.apache.bcel.classfile.JavaClass clazz, String name, String signature, BugReporter bugReporter) void
FindBugs2.setBugReporter
(BugReporter bugReporter) void
IFindBugsEngine.setBugReporter
(BugReporter bugReporter) Set the BugReporter.Constructors in edu.umd.cs.findbugs with parameters of type BugReporterModifierConstructorDescriptionBugAccumulator
(BugReporter reporter) Constructor.CategoryFilteringBugReporter
(BugReporter realBugReporter, Set<String> categorySet) DelegatingBugReporter
(BugReporter delegate) Constructor.ErrorCountingBugReporter
(BugReporter realBugReporter) ExcludingHashesBugReporter
(BugReporter delegate, String baseline) FilterBugReporter
(BugReporter realBugReporter, Matcher filter, boolean include) ResourceTrackingDetector
(BugReporter bugReporter) (package private)
SynchronizedBugReporter
(BugReporter delegate) -
Uses of BugReporter in edu.umd.cs.findbugs.asm
Fields in edu.umd.cs.findbugs.asm declared as BugReporterConstructors in edu.umd.cs.findbugs.asm with parameters of type BugReporterModifierConstructorDescriptionClassNodeDetector
(BugReporter bugReporter) Construct a ClassNodeDetector. -
Uses of BugReporter in edu.umd.cs.findbugs.bugReporter
Classes in edu.umd.cs.findbugs.bugReporter that implement BugReporterModifier and TypeClassDescriptionclass
Abstract base class for bug reporters defined as plugins.class
class
Methods in edu.umd.cs.findbugs.bugReporter with parameters of type BugReporterModifier and TypeMethodDescriptionstatic BugReporterDecorator
BugReporterDecorator.construct
(ComponentPlugin<BugReporterDecorator> plugin, BugReporter delegate) Constructors in edu.umd.cs.findbugs.bugReporter with parameters of type BugReporterModifierConstructorDescriptionBugReporterDecorator
(ComponentPlugin<BugReporterDecorator> plugin, BugReporter delegate) MaxRankDecorator
(ComponentPlugin<BugReporterDecorator> plugin, BugReporter delegate) SuppressionDecorator
(ComponentPlugin<BugReporterDecorator> plugin, BugReporter delegate) -
Uses of BugReporter in edu.umd.cs.findbugs.classfile
Methods in edu.umd.cs.findbugs.classfile with parameters of type BugReporterModifier and TypeMethodDescriptionIClassFactory.createAnalysisCache
(IClassPath classPath, BugReporter errorLogger) -
Uses of BugReporter in edu.umd.cs.findbugs.classfile.impl
Fields in edu.umd.cs.findbugs.classfile.impl declared as BugReporterMethods in edu.umd.cs.findbugs.classfile.impl with parameters of type BugReporterModifier and TypeMethodDescriptionClassFactory.createAnalysisCache
(IClassPath classPath, BugReporter errorLogger) Constructors in edu.umd.cs.findbugs.classfile.impl with parameters of type BugReporterModifierConstructorDescription(package private)
AnalysisCache
(IClassPath classPath, BugReporter errorLogger) Constructor. -
Uses of BugReporter in edu.umd.cs.findbugs.detect
Fields in edu.umd.cs.findbugs.detect declared as BugReporterModifier and TypeFieldDescriptionprivate final BugReporter
AbstractAssertDetector.bugReporter
(package private) BugReporter
AppendingToAnObjectOutputStream.bugReporter
private final BugReporter
AtomicityProblem.bugReporter
private final BugReporter
BadAppletConstructor.bugReporter
private final BugReporter
BadlyOverriddenAdapter.bugReporter
private final BugReporter
BadResultSetAccess.bugReporter
(package private) BugReporter
BadSyntaxForRegularExpression.bugReporter
(package private) BugReporter
CallToUnconditionalThrower.bugReporter
(package private) BugReporter
CallToUnsupportedMethod.bugReporter
(package private) final BugReporter
CheckAnalysisContextContainedAnnotation.bugReporter
(package private) BugReporter
CheckCalls.bugReporter
(package private) BugReporter
CheckImmutableAnnotation.bugReporter
private final BugReporter
CheckTypeQualifiers.bugReporter
private final BugReporter
CloneIdiom.bugReporter
(package private) BugReporter
ComparatorIdiom.bugReporter
private final BugReporter
ConfusedInheritance.bugReporter
(package private) final BugReporter
CrossSiteScripting.bugReporter
(package private) BugReporter
DontAssertInstanceofInTests.bugReporter
(package private) BugReporter
DontCatchIllegalMonitorStateException.bugReporter
(package private) final BugReporter
DontIgnoreResultOfPutIfAbsent.bugReporter
private final BugReporter
DontReusePublicIdentifiers.bugReporter
(package private) BugReporter
DontUseEnum.bugReporter
private final BugReporter
DontUseFloatsAsLoopCounters.bugReporter
private final BugReporter
DroppedException.bugReporter
private final BugReporter
DumbMethodInvocations.bugReporter
private final BugReporter
DumbMethods.bugReporter
private final BugReporter
DuplicateBranches.bugReporter
private final BugReporter
EmptyZipFileEntry.bugReporter
(package private) final BugReporter
EqualsOperandShouldHaveClassCompatibleWithThis.bugReporter
private final BugReporter
ExplicitSerialization.bugReporter
(package private) final BugReporter
FinalizerNullsFields.bugReporter
private final BugReporter
FindBadCast2.bugReporter
(package private) BugReporter
FindBadForLoop.bugReporter
private final BugReporter
FindCircularDependencies.bugReporter
private final BugReporter
FindDeadLocalStores.bugReporter
private final BugReporter
FindDoubleCheck.bugReporter
(package private) BugReporter
FindEmptySynchronizedBlock.bugReporter
private final BugReporter
FindFieldSelfAssignment.bugReporter
private final BugReporter
FindFinalizeInvocations.bugReporter
private final BugReporter
FindFloatEquality.bugReporter
private final BugReporter
FindFloatMath.bugReporter
private final BugReporter
FindHEmismatch.bugReporter
private final BugReporter
FindInconsistentSync2.bugReporter
private final BugReporter
FindJSR166LockMonitorenter.bugReporter
private final BugReporter
FindLocalSelfAssignment2.bugReporter
private final BugReporter
FindMaskedFields.bugReporter
private final BugReporter
FindMismatchedWaitOrNotify.bugReporter
private final BugReporter
FindNakedNotify.bugReporter
private final BugReporter
FindNonSerializableStoreIntoSession.bugReporter
private final BugReporter
FindNonSerializableValuePassedToWriteObject.bugReporter
private final BugReporter
FindNullDeref.bugReporter
(package private) BugReporter
FindNullDerefsInvolvingNonShortCircuitEvaluation.bugReporter
private final BugReporter
FindPublicAttributes.bugReporter
(package private) final BugReporter
FindPuzzlers.bugReporter
private final BugReporter
FindRefComparison.bugReporter
private final BugReporter
FindRunInvocations.bugReporter
private final BugReporter
FindSelfComparison2.bugReporter
private final BugReporter
FindSleepWithLockHeld.bugReporter
private final BugReporter
FindSpinLoop.bugReporter
(package private) BugReporter
FindSqlInjection.bugReporter
private final BugReporter
FindTwoLockWait.bugReporter
private final BugReporter
FindUncalledPrivateMethods.bugReporter
private final BugReporter
FindUnconditionalWait.bugReporter
private final BugReporter
FindUninitializedGet.bugReporter
private final BugReporter
FindUnrelatedTypesInGenericContainer.bugReporter
private final BugReporter
FindUnsatisfiedObligation.bugReporter
private final BugReporter
FindUnsyncGet.bugReporter
private final BugReporter
FindUseOfNonSerializableValue.bugReporter
private final BugReporter
FindVulnerableSecurityCheckMethods.bugReporter
(package private) final BugReporter
FormatStringChecker.bugReporter
(package private) final BugReporter
FunctionsThatMightBeMistakenForProcedures.bugReporter
(package private) BugReporter
HugeSharedStringConstants.bugReporter
private final BugReporter
IncompatMask.bugReporter
private final BugReporter
InefficientIndexOf.bugReporter
private final BugReporter
InefficientInitializationInsideLoop.bugReporter
private final BugReporter
InefficientMemberAccess.bugReporter
private final BugReporter
InefficientToArray.bugReporter
(package private) BugReporter
InfiniteLoop.bugReporter
private final BugReporter
InfiniteRecursiveLoop.bugReporter
private final BugReporter
InheritanceUnsafeGetResource.bugReporter
private final BugReporter
InitializationChain.bugReporter
(package private) final BugReporter
InitializeNonnullFieldsInConstructor.bugReporter
private final BugReporter
InstantiateStaticClass.bugReporter
(package private) final BugReporter
IntCast2LongAsInstant.bugReporter
private final BugReporter
InvalidJUnitTest.bugReporter
private final BugReporter
IteratorIdioms.bugReporter
private final BugReporter
LazyInit.bugReporter
private final BugReporter
LoadOfKnownNullValue.bugReporter
private final BugReporter
MultipleInstantiationsOfSingletons.bugReporter
private final BugReporter
MultithreadedInstanceAccess.bugReporter
private final BugReporter
MutableLock.bugReporter
private final BugReporter
MutableStaticFields.bugReporter
private final BugReporter
Naming.bugReporter
private final BugReporter
NoiseNullDeref.bugReporter
(package private) final BugReporter
OverridingEqualsNotSymmetrical.bugReporter
private final BugReporter
OverridingMethodsMustInvokeSuperDetector.bugReporter
private final BugReporter
PreferZeroLengthArrays.bugReporter
private final BugReporter
PublicSemaphores.bugReporter
private final BugReporter
QuestionableBooleanAssignment.bugReporter
private final BugReporter
RedundantConditions.bugReporter
private final BugReporter
RedundantInterfaces.bugReporter
(package private) BugReporter
RepeatedConditionals.bugReporter
private final BugReporter
ResolveAllReferences.bugReporter
private final BugReporter
RuntimeExceptionCapture.bugReporter
private final BugReporter
SerializableIdiom.bugReporter
private final BugReporter
StartInConstructor.bugReporter
private final BugReporter
StringConcatenation.bugReporter
private final BugReporter
SuperfluousInstanceOf.bugReporter
private final BugReporter
SuspiciousThreadInterrupted.bugReporter
(package private) BugReporter
SynchronizeAndNullCheckField.bugReporter
(package private) BugReporter
SynchronizeOnClassLiteralNotGetClass.bugReporter
(package private) final BugReporter
SynchronizingOnContentsOfFieldToProtectField.bugReporter
(package private) BugReporter
TestingGround2.bugReporter
private final BugReporter
ThrowingExceptions.bugReporter
private final BugReporter
TrainFieldStoreTypes.bugReporter
(package private) BugReporter
UncallableMethodOfAnonymousClass.bugReporter
private final BugReporter
UnnecessaryMath.bugReporter
private final BugReporter
UnreadFields.bugReporter
private final BugReporter
URLProblems.bugReporter
private final BugReporter
UselessSubclassMethod.bugReporter
private final BugReporter
VarArgsProblems.bugReporter
private final BugReporter
ViewCFG.bugReporter
private final BugReporter
VolatileUsage.bugReporter
private final BugReporter
WaitInLoop.bugReporter
private final BugReporter
XMLFactoryBypass.bugReporter
private final BugReporter
BuildObligationPolicyDatabase.reporter
private BugReporter
CheckExpectedWarnings.reporter
Deprecated.private final BugReporter
DontCatchNullPointerException.reporter
private final BugReporter
FindUselessObjects.reporter
(package private) final BugReporter
InconsistentAnnotations.reporter
private final BugReporter
MutableEnum.reporter
(package private) final BugReporter
NoteUnconditionalParamDerefs.reporter
private final BugReporter
StaticCalendarDetector.reporter
The reporter to report toMethods in edu.umd.cs.findbugs.detect that return BugReporterConstructors in edu.umd.cs.findbugs.detect with parameters of type BugReporterModifierConstructorDescriptionprotected
AbstractAssertDetector
(BugReporter bugReporter) AppendingToAnObjectOutputStream
(BugReporter bugReporter) AtomicityProblem
(BugReporter bugReporter) BadAppletConstructor
(BugReporter bugReporter) BadlyOverriddenAdapter
(BugReporter bugReporter) BadResultSetAccess
(BugReporter bugReporter) BadSyntaxForRegularExpression
(BugReporter bugReporter) BadUseOfReturnValue
(BugReporter bugReporter) BooleanReturnNull
(BugReporter bugReporter) BuildInterproceduralCallGraph
(BugReporter bugReporter) Constructor.BuildObligationPolicyDatabase
(BugReporter bugReporter) BuildStringPassthruGraph
(BugReporter bugReporter) CalledMethods
(BugReporter bugReporter) CallToUnconditionalThrower
(BugReporter bugReporter) CallToUnsupportedMethod
(BugReporter bugReporter) CheckAnalysisContextContainedAnnotation
(BugReporter bugReporter) CheckCalls
(BugReporter bugReporter) CheckExpectedWarnings
(BugReporter bugReporter) Deprecated.CheckImmutableAnnotation
(BugReporter bugReporter) CheckRelaxingNullnessAnnotation
(BugReporter bugReporter) CheckTypeQualifiers
(BugReporter bugReporter) CloneIdiom
(BugReporter bugReporter) ComparatorIdiom
(BugReporter bugReporter) ConfusedInheritance
(BugReporter bugReporter) ConfusionBetweenInheritedAndOuterMethod
(BugReporter bugReporter) ConstructorThrow
(BugReporter bugReporter) CovariantArrayAssignment
(BugReporter bugReporter) CrossSiteScripting
(BugReporter bugReporter) DefaultEncodingDetector
(BugReporter bugReporter) DoInsideDoPrivileged
(BugReporter bugReporter) DontAssertInstanceofInTests
(BugReporter bugReporter) DontCatchIllegalMonitorStateException
(BugReporter bugReporter) DontCatchNullPointerException
(BugReporter reporter) DontIgnoreResultOfPutIfAbsent
(BugReporter bugReporter) DontReusePublicIdentifiers
(BugReporter bugReporter) DontUseEnum
(BugReporter bugReporter) DontUseFloatsAsLoopCounters
(BugReporter bugReporter) DroppedException
(BugReporter bugReporter) DumbMethodInvocations
(BugReporter bugReporter) DumbMethods
(BugReporter bugReporter) DuplicateBranches
(BugReporter bugReporter) EmptyZipFileEntry
(BugReporter bugReporter) ExplicitSerialization
(BugReporter bugReporter) FieldItemSummary
(BugReporter bugReporter) FinalizerNullsFields
(BugReporter bugReporter) FindArgumentAssertions
(BugReporter bugReporter) FindAssertionsWithSideEffects
(BugReporter bugReporter) FindBadCast2
(BugReporter bugReporter) FindBadEndOfStreamCheck
(BugReporter bugReporter) FindBadForLoop
(BugReporter bugReporter) FindBugsSummaryStats
(BugReporter bugReporter) FindCircularDependencies
(BugReporter bugReporter) FindComparatorProblems
(BugReporter reporter) FindDeadLocalStores
(BugReporter bugReporter) FindDoubleCheck
(BugReporter bugReporter) FindEmptySynchronizedBlock
(BugReporter bugReporter) FindFieldSelfAssignment
(BugReporter bugReporter) FindFinalizeInvocations
(BugReporter bugReporter) FindFloatEquality
(BugReporter bugReporter) FindFloatMath
(BugReporter bugReporter) FindHEmismatch
(BugReporter bugReporter) FindInconsistentSync2
(BugReporter bugReporter) FindInstanceLockOnSharedStaticData
(BugReporter bugReporter) FindJSR166LockMonitorenter
(BugReporter bugReporter) FindLocalSelfAssignment2
(BugReporter bugReporter) FindMaskedFields
(BugReporter bugReporter) FindMismatchedWaitOrNotify
(BugReporter bugReporter) FindNakedNotify
(BugReporter bugReporter) FindNonSerializableStoreIntoSession
(BugReporter bugReporter) FindNonSerializableValuePassedToWriteObject
(BugReporter bugReporter) FindNonShortCircuit
(BugReporter bugReporter) FindNoSideEffectMethods
(BugReporter bugReporter) FindNullDeref
(BugReporter bugReporter) FindOpenStream
(BugReporter bugReporter) FindOverridableMethodCall
(BugReporter bugReporter) FindPublicAttributes
(BugReporter bugReporter) FindPuzzlers
(BugReporter bugReporter) FindRefComparison
(BugReporter bugReporter) FindReturnRef
(BugReporter bugReporter) FindRoughConstants
(BugReporter bugReporter) FindRunInvocations
(BugReporter bugReporter) FindSelfComparison
(BugReporter bugReporter) FindSelfComparison2
(BugReporter bugReporter) FindSleepWithLockHeld
(BugReporter bugReporter) FindSpinLoop
(BugReporter bugReporter) FindSqlInjection
(BugReporter bugReporter) FindTwoLockWait
(BugReporter bugReporter) FindUncalledPrivateMethods
(BugReporter bugReporter) FindUnconditionalWait
(BugReporter bugReporter) FindUninitializedGet
(BugReporter bugReporter) FindUnrelatedTypesInGenericContainer
(BugReporter bugReporter) FindUnreleasedLock
(BugReporter bugReporter) FindUnsatisfiedObligation
(BugReporter bugReporter) FindUnsyncGet
(BugReporter bugReporter) FindUselessControlFlow
(BugReporter bugReporter) FindUselessObjects
(BugReporter reporter) FindUseOfNonSerializableValue
(BugReporter bugReporter) FindVulnerableSecurityCheckMethods
(BugReporter bugReporter) FormatStringChecker
(BugReporter bugReporter) FunctionsThatMightBeMistakenForProcedures
(BugReporter bugReporter) HugeSharedStringConstants
(BugReporter bugReporter) IDivResultCastToDouble
(BugReporter bugReporter) IncompatMask
(BugReporter bugReporter) InconsistentAnnotations
(BugReporter reporter) InefficientIndexOf
(BugReporter bugReporter) InefficientInitializationInsideLoop
(BugReporter bugReporter) InefficientMemberAccess
(BugReporter bugReporter) InefficientToArray
(BugReporter bugReporter) InfiniteLoop
(BugReporter bugReporter) InfiniteRecursiveLoop
(BugReporter bugReporter) InheritanceUnsafeGetResource
(BugReporter bugReporter) InitializationChain
(BugReporter bugReporter) InitializeNonnullFieldsInConstructor
(BugReporter bugReporter) InstantiateStaticClass
(BugReporter bugReporter) IntCast2LongAsInstant
(BugReporter bugReporter) InvalidJUnitTest
(BugReporter bugReporter) IteratorIdioms
(BugReporter bugReporter) LazyInit
(BugReporter bugReporter) LoadOfKnownNullValue
(BugReporter bugReporter) LostLoggerDueToWeakReference
(BugReporter bugReporter) MethodReturnCheck
(BugReporter bugReporter) Methods
(BugReporter bugReporter) MultipleInstantiationsOfSingletons
(BugReporter bugReporter) MultithreadedInstanceAccess
(BugReporter bugReporter) MutableEnum
(BugReporter reporter) MutableLock
(BugReporter bugReporter) MutableStaticFields
(BugReporter bugReporter) Naming
(BugReporter bugReporter) Noise
(BugReporter bugReporter) NoiseNullDeref
(BugReporter bugReporter) NoteAnnotationRetention
(BugReporter bugReporter) NoteCheckReturnValueAnnotations
(BugReporter bugReporter) NoteDirectlyRelevantTypeQualifiers
(BugReporter bugReporter) NoteJCIPAnnotation
(BugReporter bugReporter) NoteNonNullAnnotations
(BugReporter bugReporter) Deprecated.NoteNonnullReturnValues
(BugReporter bugReporter) NoteSuppressedWarnings
(BugReporter bugReporter) NoteUnconditionalParamDerefs
(BugReporter bugReporter) NumberConstructor
(BugReporter bugReporter) Constructs a NC detector given the reporter to report bugs onOptionalReturnNull
(BugReporter bugReporter) OverridingEqualsNotSymmetrical
(BugReporter bugReporter) OverridingMethodsMustInvokeSuperDetector
(BugReporter bugReporter) PermissionsSuper
(BugReporter bugReporter) PreferZeroLengthArrays
(BugReporter bugReporter) PublicSemaphores
(BugReporter bugReporter) QuestionableBooleanAssignment
(BugReporter bugReporter) ReadReturnShouldBeChecked
(BugReporter bugReporter) RedundantConditions
(BugReporter bugReporter) RedundantInterfaces
(BugReporter bugReporter) ReflectionIncreaseAccessibility
(BugReporter bugReporter) ReflectiveClasses
(BugReporter bugReporter) RepeatedConditionals
(BugReporter bugReporter) ResolveAllReferences
(BugReporter bugReporter) RuntimeExceptionCapture
(BugReporter bugReporter) SerializableIdiom
(BugReporter bugReporter) StartInConstructor
(BugReporter bugReporter) StaticCalendarDetector
(BugReporter aReporter) Creates a new instance of this Detector.StringConcatenation
(BugReporter bugReporter) SuperfluousInstanceOf
(BugReporter bugReporter) SuspiciousThreadInterrupted
(BugReporter bugReporter) SwitchFallthrough
(BugReporter bugReporter) SynchronizationOnSharedBuiltinConstant
(BugReporter bugReporter) SynchronizeAndNullCheckField
(BugReporter bugReporter) SynchronizeOnClassLiteralNotGetClass
(BugReporter bugReporter) SynchronizingOnContentsOfFieldToProtectField
(BugReporter bugReporter) TestASM
(BugReporter bugReporter) TestDataflowAnalysis
(BugReporter bugReporter) TestingGround
(BugReporter bugReporter) TestingGround2
(BugReporter bugReporter) ThrowingExceptions
(BugReporter bugReporter) TrainFieldStoreTypes
(BugReporter bugReporter) TrainLongInstantfParams
(BugReporter bugReporter) TrainNonNullAnnotations
(BugReporter bugReporter) Deprecated.TrainUnconditionalDerefParams
(BugReporter bugReporter) TypeReturnNull
(BugReporter bugReporter) UncallableMethodOfAnonymousClass
(BugReporter bugReporter) UnnecessaryEnvUsage
(BugReporter bugReporter) UnnecessaryMath
(BugReporter bugReporter) UnreadFields
(BugReporter bugReporter) URLProblems
(BugReporter bugReporter) UselessSubclassMethod
(BugReporter bugReporter) VarArgsProblems
(BugReporter bugReporter) ViewCFG
(BugReporter bugReporter) VolatileUsage
(BugReporter bugReporter) WaitInLoop
(BugReporter bugReporter) WrongMapIterator
(BugReporter bugReporter) XMLFactoryBypass
(BugReporter bugReporter) -
Uses of BugReporter in edu.umd.cs.findbugs.gui2
Methods in edu.umd.cs.findbugs.gui2 with parameters of type BugReporterModifier and TypeMethodDescriptionprivate static IFindBugsEngine
BugLoader.createEngine
(Project p, BugReporter pcb) Create the IFindBugsEngine that will be used to analyze the application. -
Uses of BugReporter in edu.umd.cs.findbugs.plan
Methods in edu.umd.cs.findbugs.plan with parameters of type BugReporterModifier and TypeMethodDescriptionAnalysisPass.instantiateDetector2sInPass
(BugReporter bugReporter) Instantiate all of the Detector2s in this pass and return them in a (correctly-ordered) array.Detector[]
AnalysisPass.instantiateDetectorsInPass
(BugReporter bugReporter) Deprecated.call instantiateDetector2sInPass() instead -
Uses of BugReporter in edu.umd.cs.findbugs.sarif
Classes in edu.umd.cs.findbugs.sarif that implement BugReporter