Body body = method.getActiveBody();
if(body == null)
return;
inspectBody(body);
FindMethodCalls finder = new FindMethodCalls();
Set<SootMethod> calls = finder.findForMethod(method);
Iterator<SootMethod> iter = calls.iterator();
while(iter.hasNext()){
SootMethod curr = iter.next();
inspectMethod(curr);
}