Uses of Class
net.sourceforge.htmlunit.corejs.javascript.ContextFactory

Packages that use ContextFactory
net.sourceforge.htmlunit.corejs.javascript   
net.sourceforge.htmlunit.corejs.javascript.jdk13   
net.sourceforge.htmlunit.corejs.javascript.tools.debugger   
net.sourceforge.htmlunit.corejs.javascript.tools.shell   
 

Uses of ContextFactory in net.sourceforge.htmlunit.corejs.javascript
 

Methods in net.sourceforge.htmlunit.corejs.javascript that return ContextFactory
 ContextFactory ContextFactory.GlobalSetter.getContextFactoryGlobal()
           
 ContextFactory Context.getFactory()
          Return ContextFactory instance used to create this Context.
static ContextFactory ContextFactory.getGlobal()
          Get global ContextFactory.
 

Methods in net.sourceforge.htmlunit.corejs.javascript with parameters of type ContextFactory
static java.lang.Object Context.call(ContextFactory factory, Callable callable, Scriptable scope, Scriptable thisObj, java.lang.Object[] args)
          Call Callable.call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args) using the Context instance associated with the current thread.
static java.lang.Object JavaAdapter.callMethod(ContextFactory factory, Scriptable thisObj, Function f, java.lang.Object[] args, long argsToWrap)
          Utility method which dynamically binds a Context to the current thread, if none already exists.
protected  java.lang.Object VMBridge.getInterfaceProxyHelper(ContextFactory cf, java.lang.Class<?>[] interfaces)
          Create helper object to create later proxies implementing the specified interfaces later.
static void ContextFactory.initGlobal(ContextFactory factory)
          Set global ContextFactory.
 java.lang.Object InterfaceAdapter.invoke(ContextFactory cf, java.lang.Object target, Scriptable topScope, java.lang.Object thisObject, java.lang.reflect.Method method, java.lang.Object[] args)
           
protected  java.lang.Object VMBridge.newInterfaceProxy(java.lang.Object proxyHelper, ContextFactory cf, InterfaceAdapter adapter, java.lang.Object target, Scriptable topScope)
          Create proxy object for InterfaceAdapter.
 void ContextFactory.GlobalSetter.setContextFactoryGlobal(ContextFactory factory)
           
 

Constructors in net.sourceforge.htmlunit.corejs.javascript with parameters of type ContextFactory
Context(ContextFactory factory)
          Creates a new context.
 

Uses of ContextFactory in net.sourceforge.htmlunit.corejs.javascript.jdk13
 

Methods in net.sourceforge.htmlunit.corejs.javascript.jdk13 with parameters of type ContextFactory
protected  java.lang.Object VMBridge_jdk13.getInterfaceProxyHelper(ContextFactory cf, java.lang.Class<?>[] interfaces)
           
protected  java.lang.Object VMBridge_jdk13.newInterfaceProxy(java.lang.Object proxyHelper, ContextFactory cf, InterfaceAdapter adapter, java.lang.Object target, Scriptable topScope)
           
 

Uses of ContextFactory in net.sourceforge.htmlunit.corejs.javascript.tools.debugger
 

Methods in net.sourceforge.htmlunit.corejs.javascript.tools.debugger with parameters of type ContextFactory
 void Main.attachTo(ContextFactory factory)
          Attaches the debugger to the given ContextFactory.
 void Dim.attachTo(ContextFactory factory)
          Attaches the debugger to the given ContextFactory.
static Main Main.mainEmbedded(ContextFactory factory, ScopeProvider scopeProvider, java.lang.String title)
          Entry point for embedded applications.
static Main Main.mainEmbedded(ContextFactory factory, Scriptable scope, java.lang.String title)
          Entry point for embedded applications.
 

Uses of ContextFactory in net.sourceforge.htmlunit.corejs.javascript.tools.shell
 

Subclasses of ContextFactory in net.sourceforge.htmlunit.corejs.javascript.tools.shell
 class ShellContextFactory
           
 

Methods in net.sourceforge.htmlunit.corejs.javascript.tools.shell with parameters of type ContextFactory
 void Global.init(ContextFactory factory)