invokeMethod
Calls a method on a script object compiled during a previous script execution, which is retained in the state of the ScriptEngine .
- Parameters:
-
thiz - If the procedure is a member of a class defined in the script and thiz is an instance of that class returned by a previous execution or invocation, the named method is called through that instance.
-
name - The name of the procedure to be called.
-
args - Arguments to pass to the procedure. The rules for converting the arguments to scripting variables are implementation-specific.
- Returns:
- The value returned by the procedure. The rules for converting the scripting variable returned by the script method to a Java Object are implementation-specific.
- Throws:
-
ScriptException - if an error occurs during invocation of the method.
-
NoSuchMethodException - if method with given name or matching argument types cannot be found.
-
NullPointerException - if the method name is null.
-
IllegalArgumentException - if the specified thiz is null or the specified Object is does not represent a scripting object.
|
|