Here you can find the source of getMethodName(Method method)
private static String getMethodName(Method method)
//package com.java2s; //License from project: Open Source License import java.lang.reflect.Method; public class Main { private static String getMethodName(Method method) { return method.getName(); }/*ww w .j av a2s .com*/ }