java.lang.Object
javax.script.CompiledScript
public abstract class CompiledScript extends Object
Extended by classes that store results of compilations. State
might be stored in the form of Java classes, Java class files or scripting
language opcodes. The script may be executed repeatedly
without reparsing.
Each
Each
CompiledScript
is associated with a ScriptEngine
-- A call to an eval
method of the CompiledScript
causes the execution of the script by the
ScriptEngine
. Changes in the state of the ScriptEngine
caused by execution
of the CompiledScript
may visible during subsequent executions of scripts by the engine.- Since:
- 1.6
-
Constructor Summary
Constructors Constructor Description CompiledScript()
-
Method Summary
Modifier and Type Method Description Object
eval()
Executes the program stored in theCompiledScript
object.Object
eval(Bindings bindings)
Executes the program stored in theCompiledScript
object using the suppliedBindings
of attributes as theENGINE_SCOPE
of the associatedScriptEngine
during script execution.abstract Object
eval(ScriptContext context)
Executes the program stored in thisCompiledScript
object.abstract ScriptEngine
getEngine()
Returns theScriptEngine
whosecompile
method created thisCompiledScript
.
-
Constructor Details
-
CompiledScript
public CompiledScript()
-
-
Method Details
-
eval
Executes the program stored in thisCompiledScript
object.- Parameters:
context
- AScriptContext
that is used in the same way as theScriptContext
passed to theeval
methods ofScriptEngine
.- Returns:
- The value returned by the script execution, if any. Should return
null
if no value is returned by the script execution. - Throws:
ScriptException
- if an error occurs.NullPointerException
- if context is null.
-
eval
Executes the program stored in theCompiledScript
object using the suppliedBindings
of attributes as theENGINE_SCOPE
of the associatedScriptEngine
during script execution. If bindings is null, then the effect of calling this method is same as that of eval(getEngine().getContext()).. The
GLOBAL_SCOPE
Bindings
,Reader
andWriter
associated with the defaultScriptContext
of the associatedScriptEngine
are used.- Parameters:
bindings
- The bindings of attributes used for theENGINE_SCOPE
.- Returns:
- The return value from the script execution
- Throws:
ScriptException
- if an error occurs.
-
eval
Executes the program stored in theCompiledScript
object. The defaultScriptContext
of the associatedScriptEngine
is used. The effect of calling this method is same as that of eval(getEngine().getContext()).- Returns:
- The return value from the script execution
- Throws:
ScriptException
- if an error occurs.
-
getEngine
Returns theScriptEngine
whosecompile
method created thisCompiledScript
. TheCompiledScript
will execute in this engine.- Returns:
- The
ScriptEngine
that created thisCompiledScript
-