Invoke the declared method with the specified arguments and interpreter reference. This is the simplest form of invoke() for BshMethod intended to be used in reflective style access to bsh scripts.
( Object[] argValues, Interpreter interpreter )
| 156 | intended to be used in reflective style access to bsh scripts. |
| 157 | */ |
| 158 | public Object invoke( |
| 159 | Object[] argValues, Interpreter interpreter ) |
| 160 | throws EvalError |
| 161 | { |
| 162 | return invoke( argValues, interpreter, null, null, false ); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | Invoke the bsh method with the specified args, interpreter ref, |
no test coverage detected