|
|||||||||
| Home >> All >> org >> apache >> bsf >> debug >> [ jsdi overview ] | PREV NEXT | ||||||||
B
- bind(String) - Method in interface org.apache.bsf.debug.jsdi.JsContext
C
- call(JsContext, JsObject, JsObject, Object[]) - Method in interface org.apache.bsf.debug.jsdi.JsFunction
- Call the function.
- construct(JsContext, JsObject, Object[]) - Method in interface org.apache.bsf.debug.jsdi.JsFunction
- Call the function as a constructor.
D
- DONTDELETE - Static variable in interface org.apache.bsf.debug.jsdi.JsObject
- Property attribute indicating property cannot be deleted.
- DONTENUM - Static variable in interface org.apache.bsf.debug.jsdi.JsObject
- Property attribute indicating property is not enumerated.
- define(String, Object, int) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- The value can be any of the following type: java.lang.Boolean java.lang.Number java.lang.String org.apache.bsf.debug.jsdi.JsObject
- delete(int) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Removes a property from this object.
- delete(String) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Removes a property from this object.
E
- EMPTY - Static variable in interface org.apache.bsf.debug.jsdi.JsObject
- The empty property attribute.
- eval(String, String, int) - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Allow the debugger to evaluate an expression within the current context.
- exec(JsContext, JsObject) - Method in interface org.apache.bsf.debug.jsdi.JsScript
- Execute the script.
G
- get(String) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Get a named property from the object.
- get(int) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- getArgumentCount() - Method in interface org.apache.bsf.debug.jsdi.JsFunction
- getClassName() - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Get the name of the set of objects implemented by this Java class.
- getCode() - Method in interface org.apache.bsf.debug.jsdi.JsContext
- getContext(int) - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Returns the JsContext at a certain depth.
- getContextCount() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Returns the count of JsContext on the current stack.
- getDebugger() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Return the current debugger.
- getDefaultValue(Class) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Get the default value of the object with a given hint.
- getDepth() - Method in interface org.apache.bsf.debug.jsdi.JsContext
- getEngine() - Method in interface org.apache.bsf.debug.jsdi.JsContext
- getFunctionName() - Method in interface org.apache.bsf.debug.jsdi.JsFunction
- getGlobalObject() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Any execution in JavaScript happen with respect to a global object, sort of the top-level name space for properties.
- getIds(boolean) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Returns an array of property ids defined on this object.
- getLineNumber() - Method in interface org.apache.bsf.debug.jsdi.JsContext
- getLineNumbers() - Method in interface org.apache.bsf.debug.jsdi.JsCode
- Get array containing the line numbers that can have breakpoints placed on them.
- getPrototype() - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Get the prototype of the object.
- getScope() - Method in interface org.apache.bsf.debug.jsdi.JsContext
- Scope of a context.
- getScope() - Method in interface org.apache.bsf.debug.jsdi.JsObject
- The scope is for supporting two things.
- getSourceName() - Method in interface org.apache.bsf.debug.jsdi.JsCode
- Get the name of the source (usually filename or URL) of the script.
- getSourceName() - Method in interface org.apache.bsf.debug.jsdi.JsContext
- getThis() - Method in interface org.apache.bsf.debug.jsdi.JsContext
- getThread() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Returns name of the thread currently running in the engine
- getThreadGroup() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Returns name of the ThreadGroup of the thread currently running in the engine
- getUndefinedValue() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- As per ECMA specification, each JavaScript execution defines a unique object for the undefined value.
H
- handleBreakpointHit(JsContext) - Method in interface org.apache.bsf.debug.jsdi.JsCallbacks
- Callback when a breakpoint is hit in the debuggee.
- handleEngineStopped(JsContext) - Method in interface org.apache.bsf.debug.jsdi.JsCallbacks
- Callback when an engine stops after a stop-request.
- handleExceptionThrown(JsContext, Object) - Method in interface org.apache.bsf.debug.jsdi.JsCallbacks
- Callback when an exception is thrown in the debuggee.
- handleSteppingDone(JsContext) - Method in interface org.apache.bsf.debug.jsdi.JsCallbacks
- Callback when a step-request has finished.
- has(int) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Indicates whether or not an indexed property is defined in an object.
- has(String) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Indicates whether or not a named property is defined in an object.
- hasInstance(JsObject) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- The instanceof operator.
I
- INTERNAL - Static variable in interface org.apache.bsf.debug.jsdi.JsObject
- Property attribute indicating property cannot be deleted.
- isFunction() - Method in interface org.apache.bsf.debug.jsdi.JsObject
- isScript() - Method in interface org.apache.bsf.debug.jsdi.JsObject
- isSuspended() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
J
- JsCallbacks - interface org.apache.bsf.debug.jsdi.JsCallbacks.
- This interface is the callback for the JavaScript debugger.
- JsCode - interface org.apache.bsf.debug.jsdi.JsCode.
- This interface exposes debugging information from executable code (either functions or top-level scripts).
- JsContext - interface org.apache.bsf.debug.jsdi.JsContext.
- JsEngine - interface org.apache.bsf.debug.jsdi.JsEngine.
- Represents a remote engine as seen from the debugger.
- JsFunction - interface org.apache.bsf.debug.jsdi.JsFunction.
- Represents a function in the engine since JavaScript has code as first-class objects.
- JsObject - interface org.apache.bsf.debug.jsdi.JsObject.
- This is interface that all objects in JavaScript must implement.
- JsScript - interface org.apache.bsf.debug.jsdi.JsScript.
- Represents a script in the engine since JavaScript has code as first-class objects.
- JsdiException - exception org.apache.bsf.debug.jsdi.JsdiException.
- Insert the type's description here.
- JsdiException() - Constructor for class org.apache.bsf.debug.jsdi.JsdiException
- JsdiException constructor comment.
- JsdiException(String) - Constructor for class org.apache.bsf.debug.jsdi.JsdiException
O
- org.apache.bsf.debug.jsdi - package org.apache.bsf.debug.jsdi
P
- poll() - Method in interface org.apache.bsf.debug.jsdi.JsCallbacks
- Allows the server to poll the connection.
- poll() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Allows the client debugger to poll the connection.
- put(int, Object) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Sets an indexed property in this object.
- put(String, Object) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Sets a named property in this object.
R
- READONLY - Static variable in interface org.apache.bsf.debug.jsdi.JsObject
- Property attribute indicating assignment to this property is ignored.
- run() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Stepping commands: run: resume execution until it finishes or a breakpoint is hit.
S
- setDebugger(JsCallbacks) - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- Set the associated debugger.
- setPrototype(JsObject) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Set the prototype of the object.
- setScope(JsObject) - Method in interface org.apache.bsf.debug.jsdi.JsObject
- Set the prototype of the object.
- stepIn() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- stepOut() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
- stepOver() - Method in interface org.apache.bsf.debug.jsdi.JsEngine
B C D E G H I J O P R S
|
|||||||||
| Home >> All >> org >> apache >> bsf >> debug >> [ jsdi overview ] | PREV NEXT | ||||||||