MCPcopy Create free account
hub / github.com/beanshell/beanshell / invokeMethod

Method invokeMethod

src/bsh/NameSpace.java:1286–1292  ·  view source on GitHub ↗

Invoke a method in this namespace with the specified args and interpreter reference. No caller information or call stack is required. The method will appear as if called externally from Java. @see bsh.This#invokeMethod(String, Object [], Interpreter, CallStack, SimpleNode, boolean)

( 
		String methodName, Object [] args, Interpreter interpreter )

Source from the content-addressed store, hash-verified

1284 @see bsh.This#invokeMethod(String, Object [], Interpreter, CallStack, SimpleNode, boolean)
1285 */
1286 public Object invokeMethod(
1287 String methodName, Object [] args, Interpreter interpreter )
1288 throws EvalError
1289 {
1290 return invokeMethod(
1291 methodName, args, interpreter, null, null );
1292 }
1293
1294 /**
1295 This method simply delegates to This.invokeMethod();

Callers

nothing calls this directly

Calls 1

getThisMethod · 0.95

Tested by

no test coverage detected