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 )
| 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(); |