Here you can find the source of getMethod(Class cls, String methodName, Class[] params)
public static Method getMethod(Class cls, String methodName, Class[] params) throws NoSuchMethodException
//package com.java2s; import java.lang.reflect.*; public class Main { public static Method getMethod(Class cls, String methodName, Class[] params) throws NoSuchMethodException { return cls.getMethod(methodName, params); }/*from www . ja va2 s. co m*/ }