Class CFGFactory
- java.lang.Object
-
- edu.umd.cs.findbugs.classfile.engine.bcel.AnalysisFactory<CFG>
-
- edu.umd.cs.findbugs.classfile.engine.bcel.CFGFactory
-
- All Implemented Interfaces:
IAnalysisEngine<MethodDescriptor,CFG>,IMethodAnalysisEngine<CFG>
public class CFGFactory extends AnalysisFactory<CFG>
Analysis engine to produce CFG (control flow graph) objects for an analyzed method.- Author:
- David Hovemeyer
-
-
Constructor Summary
Constructors Constructor Description CFGFactory()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CFGanalyze(IAnalysisCache analysisCache, MethodDescriptor descriptor)Perform an analysis on class or method named by given descriptor.voidregisterWith(IAnalysisCache analysisCache)Register the analysis engine with given analysis cache.-
Methods inherited from class edu.umd.cs.findbugs.classfile.engine.bcel.AnalysisFactory
getAssertionMethods, getCFG, getCompactLocationNumbering, getConstantPoolGen, getDepthFirstSearch, getExceptionSetFactory, getIsNullValueDataflow, getJavaClass, getLoadedFieldSet, getMethod, getMethodGen, getReverseDepthFirstSearch, getTypeDataflow, getValueNumberDataflow, toString
-
-
-
-
Method Detail
-
analyze
public CFG analyze(IAnalysisCache analysisCache, MethodDescriptor descriptor) throws CheckedAnalysisException
Description copied from interface:IAnalysisEnginePerform an analysis on class or method named by given descriptor.- Parameters:
analysisCache- the analysis cachedescriptor- the descriptor of the class or method to be analyzed- Returns:
- the result of the analysis of the class or method
- Throws:
CheckedAnalysisException
-
registerWith
public void registerWith(IAnalysisCache analysisCache)
Description copied from interface:IAnalysisEngineRegister the analysis engine with given analysis cache.- Specified by:
registerWithin interfaceIAnalysisEngine<MethodDescriptor,CFG>- Overrides:
registerWithin classAnalysisFactory<CFG>- Parameters:
analysisCache- the analysis cache
-
-