TranslationResult result = analysis.buildFlowGraph();
analysis.transformFlowGraph(result.getGraph());
final FlowGraph graph = result.getGraph();
XMLGraphBuilder xmlGraphs = analysis.buildXMLGraphs(graph);
int counter = 0;
for (Map.Entry<ValueBox, AnalyzeStm> en : result.getHotspots()
.entrySet()) {
ValueBox value = en.getKey();
AnalyzeStm stm = en.getValue();
XMLGraph g = xmlGraphs.getIn(stm, stm.getBase());
List<Automaton> findInputNameValues = findInputNameValues(g);
for (Automaton automaton : findInputNameValues) {
System.out.println(automaton.getFiniteStrings());
}
SootMethod method = hotspot2method.get(value);