Package edu.umd.cs.findbugs.detect
Class FindUnrelatedTypesInGenericContainer
- java.lang.Object
-
- edu.umd.cs.findbugs.detect.FindUnrelatedTypesInGenericContainer
-
- All Implemented Interfaces:
Detector
,Priorities
public class FindUnrelatedTypesInGenericContainer extends java.lang.Object implements Detector
- Author:
- Nat Ayewah, William Pugh
-
-
Field Summary
-
Fields inherited from interface edu.umd.cs.findbugs.Priorities
EXP_PRIORITY, HIGH_PRIORITY, IGNORE_PRIORITY, LOW_PRIORITY, NORMAL_PRIORITY
-
-
Constructor Summary
Constructors Constructor Description FindUnrelatedTypesInGenericContainer(BugReporter bugReporter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
prescreen(ClassContext classContext, org.apache.bcel.classfile.Method method)
Use this to screen out methods that do not contain invocations.void
report()
Emptyvoid
visitClassContext(ClassContext classContext)
Visit the class context
-
-
-
Constructor Detail
-
FindUnrelatedTypesInGenericContainer
public FindUnrelatedTypesInGenericContainer(BugReporter bugReporter)
-
-
Method Detail
-
visitClassContext
public void visitClassContext(ClassContext classContext)
Visit the class context- Specified by:
visitClassContext
in interfaceDetector
- Parameters:
classContext
- the ClassContext- See Also:
Detector.visitClassContext(edu.umd.cs.findbugs.ba.ClassContext)
-
prescreen
public boolean prescreen(ClassContext classContext, org.apache.bcel.classfile.Method method)
Use this to screen out methods that do not contain invocations.
-
report
public void report()
Empty- Specified by:
report
in interfaceDetector
- See Also:
Detector.report()
-
-