|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ScriptContext | |
---|---|
javax.script | JSR 223 classes and interfaces. |
php.java.script | Internal PHP script engine implementation. Applications should use the JSR 223 API instead. |
php.java.script.servlet | Internal PHP script engine implementation for servlets. Applications should use the JSR 223 API instead. |
Uses of ScriptContext in javax.script |
---|
Classes in javax.script that implement ScriptContext | |
---|---|
class |
SimpleScriptContext
The GenericScriptContext is a simple implementation of ScriptContext. |
Methods in javax.script that return ScriptContext | |
---|---|
ScriptContext |
ScriptEngine.getContext()
|
ScriptContext |
AbstractScriptEngine.getContext()
Return the script context. |
Methods in javax.script with parameters of type ScriptContext | |
---|---|
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 namespaces in the specifed ScriptContext. |
abstract java.lang.Object |
CompiledScript.eval(ScriptContext context)
Re-evaluates the recompiled script using the specified ScriptContext. |
java.lang.Object |
ScriptEngine.eval(java.lang.String script,
ScriptContext context)
Evaluates a script using the namespaces in the specifed ScriptContext. |
void |
ScriptEngine.setContext(ScriptContext ctx)
Set the default ScriptContext |
void |
AbstractScriptEngine.setContext(ScriptContext ctx)
Set a new context. |
Uses of ScriptContext in php.java.script |
---|
Subinterfaces of ScriptContext in php.java.script | |
---|---|
interface |
IPhpScriptContext
Common methods for all PHP ScriptContexts |
Classes in php.java.script that implement ScriptContext | |
---|---|
class |
AbstractPhpScriptContext
A simple ScriptContext which can be used in servlet- or standalone environments. |
class |
PhpCompiledScriptContext
A decorator for compiled script engines. |
class |
PhpJavaBridgeRunnerScriptContext
A decorator which enables secure (HTTPS) connections. |
class |
PhpScriptContext
This class implements a simple script context for PHP. |
class |
PhpScriptContextDecorator
Abstract class for IPhpScriptContexts. |
class |
PhpSecureScriptContext
A decorator which enables secure (HTTPS) connections. |
class |
ScriptContextDecorator
Abstract class for ScriptContexts. |
Methods in php.java.script with parameters of type ScriptContext | |
---|---|
java.lang.Object |
CompiledPhpScript.eval(ScriptContext context)
Re-evaluates the recompiled script using the specified ScriptContext. |
java.lang.Object |
InteractivePhpScriptEngine.eval(java.lang.String script,
ScriptContext context)
Evaluate a PHP line. |
Constructors in php.java.script with parameters of type ScriptContext | |
---|---|
AbstractPhpScriptContext(ScriptContext ctx)
|
|
PhpJavaBridgeRunnerScriptContext(ScriptContext ctx,
JavaBridgeRunner httpServer)
Create a new PhpCompiledScriptContext using an existing PhpScriptContext |
|
PhpScriptContext(ScriptContext ctx)
|
|
PhpSecureScriptContext(ScriptContext ctx)
Create a new PhpCompiledScriptContext using an existing PhpScriptContext |
|
ScriptContextDecorator(ScriptContext ctx)
|
Uses of ScriptContext in php.java.script.servlet |
---|
Classes in php.java.script.servlet that implement ScriptContext | |
---|---|
class |
PhpHttpScriptContext
An example decorator for compiled script engines running in a servlet environment. |
Constructors in php.java.script.servlet with parameters of type ScriptContext | |
---|---|
PhpHttpScriptContext(ScriptContext ctx,
javax.servlet.Servlet servlet,
javax.servlet.ServletContext context,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Create a new PhpCompiledScriptContext using an existing PhpScriptContext |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |