MCPcopy Create free account
hub / github.com/directwebremoting/dwr / getMethod

Method getMethod

etc/future/OverloadUtilTest.java:109–121  ·  view source on GitHub ↗

Util method to get a method, ignoring checked exceptions @param clazz @param name @param parameterTypes @return method

(Class clazz, String name, Class... parameterTypes)

Source from the content-addressed store, hash-verified

107 * @return method
108 */
109 private static Method getMethod(Class clazz, String name, Class... parameterTypes)
110 {
111 Method method = null;
112 try
113 {
114 method = clazz.getMethod(name, parameterTypes);
115 }
116 catch (Exception e)
117 {
118 e.printStackTrace();
119 }
120 return method;
121 }
122
123}
124

Callers 1

OverloadUtilTestClass · 0.95

Calls 1

getMethodMethod · 0.65

Tested by

no test coverage detected