Uses of Interface
php.java.bridge.http.IContext

Packages that use IContext
php.java.bridge Internal VM Bridge core classes and interfaces. 
php.java.bridge.http Internal fast socket and pipe context runners for VM Bridge J2EE backends. 
php.java.script Internal PHP script engine implementation. 
php.java.script.servlet Internal PHP script engine implementation for servlets. 
php.java.servlet PHP/Java Bridge Servlet. 
 

Uses of IContext in php.java.bridge
 

Methods in php.java.bridge that return IContext
 IContext IJavaBridgeFactory.getContext()
          Return the associated JSR223 context
abstract  IContext JavaBridgeFactory.getContext()
          Return the associated JSR223 context
 IContext SessionFactory.getContext()
          Return the associated context
 

Uses of IContext in php.java.bridge.http
 

Classes in php.java.bridge.http that implement IContext
 class Context
          Emulates a JSR223 script context when the JSR223 classes are not available.
 

Methods in php.java.bridge.http that return IContext
 IContext ContextFactory.getContext()
          Returns the context.
 IContext SimpleContextFactory.getContext()
          Return a JSR223 context
 IContext IContextFactory.getContext()
          Return a JSR223 context
 

Methods in php.java.bridge.http with parameters of type IContext
 void ContextFactory.setContext(IContext context)
          Set the Context into this factory.
 void SimpleContextFactory.setContext(IContext context)
          Set the Context into this factory.
 void IContextFactory.setContext(IContext context)
          Set the Context into this factory.
 

Uses of IContext in php.java.script
 

Subinterfaces of IContext in php.java.script
 interface IPhpScriptContext
          Common methods for all PHP ScriptContexts
 

Classes in php.java.script that implement IContext
 class AbstractPhpScriptContext
          A simple ScriptContext which can be used in servlet- or standalone environments.
 class PhpScriptContext
          This class implements a simple script context for PHP.
 

Methods in php.java.script with parameters of type IContext
static IContextFactory PhpScriptContextFactory.addNew(IContext context)
          Add the PhpScriptContext
static IContextFactory InteractivePhpScriptContextFactory.addNew(IContext context)
          Add the PhpScriptContext
 

Uses of IContext in php.java.script.servlet
 

Classes in php.java.script.servlet that implement IContext
 class PhpSimpleHttpScriptContext
          A simple ScriptContext which can be used in servlet environments.
 

Methods in php.java.script.servlet with parameters of type IContext
static IContextFactory PhpServletContextFactory.addNew(IContext context, javax.servlet.Servlet servlet, javax.servlet.ServletContext ctx, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          Add the PhpScriptContext
static IContextFactory InvocablePhpServletContextFactory.addNew(IContext context, javax.servlet.Servlet servlet, javax.servlet.ServletContext ctx, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          Add the PhpScriptContext
 

Uses of IContext in php.java.servlet
 

Classes in php.java.servlet that implement IContext
 class RemoteContext
          A custom context, used when remote PHP scripts access the servlet.
 

Methods in php.java.servlet that return IContext
 IContext RemoteServletContextFactory.createContext()
          Return an emulated JSR223 context.
 IContext SimpleServletContextFactory.createContext()
          Return an emulated JSR223 context.