// SubmitHandler instantiation. Any other instantiations
// will have to have a method invoked at some later
// point in time, in order to change the control flow.
// When that happens, it is caught by the analysis.
RefType type = newInstance.getBaseType();
SootClass submitClass = type.getSootClass();
List<SootMethod> queue = new ArrayList<SootMethod>();
if (resolver.isSubmitHandler(submitClass))
handleNewSubmitHandler(stateMachine, method, st, submitClass, queue);
return queue;
}