Uses of Interface
org.apache.bsf.debug.jsdi.JsContext

Packages that use JsContext
org.apache.bsf.dbline   
org.apache.bsf.debug.jsdi   
org.apache.bsf.debug.meta   
org.apache.bsf.engines.javascript   
 

Uses of JsContext in org.apache.bsf.dbline
 

Methods in org.apache.bsf.dbline with parameters of type JsContext
 void Callbacks.handleBreakpointHit(JsContext cx)
           
 void JsDb.handleBreakpointHit(JsContext top)
          initialize the engine.
 void Callbacks.handleEngineStopped(JsContext cx)
           
 void JsDb.handleEngineStopped(JsContext cx)
           
 void Callbacks.handleExceptionThrown(JsContext cx, java.lang.Object exception)
           
 void JsDb.handleExceptionThrown(JsContext top, java.lang.Object exception)
           
 void Callbacks.handleSteppingDone(JsContext cx)
           
 void JsDb.handleSteppingDone(JsContext top)
          initialize the engine.
 

Constructors in org.apache.bsf.dbline with parameters of type JsContext
Context(JsContext cx, Buffer buffer)
           
 

Uses of JsContext in org.apache.bsf.debug.jsdi
 

Methods in org.apache.bsf.debug.jsdi that return JsContext
 JsContext JsEngine.getContext(int depth)
          Returns the JsContext at a certain depth.
 

Methods in org.apache.bsf.debug.jsdi with parameters of type JsContext
 java.lang.Object JsFunction.call(JsContext cx, JsObject scope, JsObject thisObj, java.lang.Object[] args)
          Call the function.
 JsObject JsFunction.construct(JsContext cx, JsObject scope, java.lang.Object[] args)
          Call the function as a constructor.
 java.lang.Object JsScript.exec(JsContext cx, JsObject scope)
          Execute the script.
 void JsCallbacks.handleBreakpointHit(JsContext cx)
          Callback when a breakpoint is hit in the debuggee.
 void JsCallbacks.handleEngineStopped(JsContext cx)
          Callback when an engine stops after a stop-request.
 void JsCallbacks.handleExceptionThrown(JsContext cx, java.lang.Object exception)
          Callback when an exception is thrown in the debuggee.
 void JsCallbacks.handleSteppingDone(JsContext cx)
          Callback when a step-request has finished.
 

Uses of JsContext in org.apache.bsf.debug.meta
 

Methods in org.apache.bsf.debug.meta that return JsContext
 JsContext JsEngineStub.getContext(int depth)
          Returns the JsContext at a certain depth.
 

Methods in org.apache.bsf.debug.meta with parameters of type JsContext
 void JsCallbacksStub.handleBreakpointHit(JsContext cx)
          Callback when a breakpoint is hit in the debuggee.
 void JsCallbacksStub.handleEngineStopped(JsContext cx)
          Callback when an engine stops after a stop-request.
 void JsCallbacksStub.handleExceptionThrown(JsContext cx, java.lang.Object exception)
          Callback when an exception is thrown in the debuggee.
 void JsCallbacksStub.handleSteppingDone(JsContext cx)
          Callback when a step-request has finished.
 

Uses of JsContext in org.apache.bsf.engines.javascript
 

Classes in org.apache.bsf.engines.javascript that implement JsContext
 class JsContextStub
          Insert the type's description here.
 

Methods in org.apache.bsf.engines.javascript that return JsContext
 JsContext RhinoEngineDebugger.getContext(int depth)
           
 JsContext JsEngineStub.getContext(int depth)
           
 

Methods in org.apache.bsf.engines.javascript with parameters of type JsContext
 void RhinoEngineDebugger.setBreakNextLine(JsContext context, boolean isLineStep)
          Set whether the engine should break when it encounters the next line.