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

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

Uses of IContext in php.java.bridge
 

Methods in php.java.bridge that return IContext
 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 SimpleContextFactory.getContext()
           
 IContext IContextFactory.getContext()
          Return a JSR223 context
 IContext ContextFactory.getContext()
          Returns the context.
 

Methods in php.java.bridge.http with parameters of type IContext
 void SimpleContextFactory.setContext(IContext context)
           
 void IContextFactory.setContext(IContext context)
          Set the Context into this factory.
 void ContextFactory.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 PhpScriptContext
          This class implements a simple script context for PHP.
 class PhpSimpleHttpScriptContext
          A simple ScriptContext which can be used in servlet environments.
 

Methods in php.java.script with parameters of type IContext
static IContextFactory PhpScriptContextFactory.addNew(IContext context)
          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 ServletContextFactory.createContext()
          Return an emulated JSR223 context.