Here you can find the source of getMethodName(String stmt)
public static String getMethodName(String stmt)
//package com.java2s; public class Main { public static String getMethodName(String stmt) { int endPos = stmt.toString().indexOf('('); int startPos = stmt.toString().lastIndexOf(' ', endPos); return stmt.toString().substring(startPos + 1, endPos); }//w ww. j a va 2s . c o m }