for (Transition t : state.getTransitions()) {
if (t instanceof HandlerTransition) {
// TODO move enough information into the HandlerTransition
// to do the analysis here?
} else if (t instanceof WebMethodTransition) {
final WebMethodTransition webMethodTransition = (WebMethodTransition) t;
final InvokeExpr expr = webMethodTransition.getExpr();
MethodStatementContainer container = machine
.getMakeURLLocation(expr);
SootMethod enclosingMethod = container.getMethod();
Stmt enclosingStatement = container.getStatement();