Searched refs:doitMethod (Results 1 - 3 of 3) sorted by relevance

/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/execution/
H A DDirectExecutionControl.java108 Method doitMethod;
111 doitMethod = klass.getDeclaredMethod(methodName, new Class<?>[0]);
112 doitMethod.setAccessible(true);
119 String result = invoke(doitMethod);
201 * @param doitMethod the Method to invoke
208 protected String invoke(Method doitMethod) throws Exception { argument
209 Object res = doitMethod.invoke(null, new Object[0]);
H A DRemoteExecutionControl.java115 protected String invoke(Method doitMethod) throws Exception { argument
116 return super.invoke(doitMethod);
H A DLocalExecutionControl.java61 protected String invoke(Method doitMethod) throws Exception { argument
88 res[0] = doitMethod.invoke(null, new Object[0]);

Completed in 42 milliseconds