|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ScriptException in javax.script |
---|
Methods in javax.script that throw ScriptException | |
---|---|
CompiledScript |
Compilable.compile(java.io.Reader reader)
Compiles the script (source is read from the Reader) for later execution. |
CompiledScript |
Compilable.compile(java.lang.String script)
Compiles the script (sourced from the String) for later execution. |
java.lang.Object |
CompiledScript.eval()
Executes the program stored in the CompiledScript object. |
java.lang.Object |
CompiledScript.eval(Bindings bindings)
Executes the program stored in the CompiledScript object using the supplied Bindings of attributes as the ENGINE_SCOPE of the associated ScriptEngine during script execution. |
java.lang.Object |
ScriptEngine.eval(java.io.Reader reader)
Evaluates a script obtained using the specified reader as the script source. |
java.lang.Object |
AbstractScriptEngine.eval(java.io.Reader reader)
Evaluates a script obtained using the specified reader as the script source. |
java.lang.Object |
ScriptEngine.eval(java.io.Reader reader,
Bindings bindings)
Evaluates a script obtained using a reader as the script source and using the specified namespace as the ENGINE_SCOPE. |
java.lang.Object |
AbstractScriptEngine.eval(java.io.Reader reader,
Bindings bindings)
Evaluates a script obtained using a reader as the script source and using the specified namespace as the ENGINE_SCOPE. |
java.lang.Object |
ScriptEngine.eval(java.io.Reader reader,
ScriptContext context)
Evaluates a script obtained using the specified reader as the script source and using the bindings in the specifed ScriptContext. |
abstract java.lang.Object |
CompiledScript.eval(ScriptContext context)
Evaluates the compiled script using the specified ScriptContext . |
java.lang.Object |
ScriptEngine.eval(java.lang.String script)
Evaluates a script contained in a String and returns the resultant object. |
java.lang.Object |
AbstractScriptEngine.eval(java.lang.String script)
Evaluates a script contained in a String and returns the resultant object. |
java.lang.Object |
ScriptEngine.eval(java.lang.String script,
Bindings bindings)
Evaluates a piece of script using the specified namespace as the ENGINE_SCOPE. |
java.lang.Object |
AbstractScriptEngine.eval(java.lang.String script,
Bindings bindings)
Evaluates a piece of script using the specified namespace as the ENGINE_SCOPE. |
java.lang.Object |
ScriptEngine.eval(java.lang.String script,
ScriptContext context)
Evaluates a script using the bindings in the specifed ScriptContext. |
java.lang.Object |
Invocable.invokeFunction(java.lang.String name,
java.lang.Object[] args)
Invokes a scripting procedure with the given name using the array of objects as its arguments set. |
java.lang.Object |
Invocable.invokeMethod(java.lang.Object thiz,
java.lang.String name,
java.lang.Object[] args)
Invokes a procedure on an object which already defined in the script using the array of objects as its arguments set. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |