Package edu.umd.cs.findbugs.ba
Interface CFGBuilder
-
- All Known Implementing Classes:
BetterCFGBuilder2
public interface CFGBuilder
Abstract interface for CFG builder classes.- Author:
- David Hovemeyer
- See Also:
CFG
,CFGBuilderFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
build()
Build the CFG.CFG
getCFG()
Get the CFG built by this object.
-
-
-
Method Detail
-
build
void build() throws CFGBuilderException
Build the CFG.- Throws:
CFGBuilderException
-
getCFG
CFG getCFG()
Get the CFG built by this object. Assumes that the build() method has already been called.- Returns:
- the CFG
-
-