| org.mozilla.javascript.Callable
Callable | public interface Callable (Code) | | Generic notion of callable object that can execute some script-related code
upon request with specified values for script scope and this objects.
|
call | public Object call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args)(Code) | | Perform the call.
Parameters: cx - the current Context for this thread Parameters: scope - the scope to use to resolve properties. Parameters: thisObj - the JavaScript this object Parameters: args - the array of arguments the result of the call |
|
|