Package | Description |
---|---|
org.netbeans.api.debugger.jpda |
JPDA Debugger APIs provide representation of JDI functionality.
|
org.netbeans.spi.debugger.jpda |
JPDA Debugger SPIs defines support for Smart Stepping, Variables Filtering
and filtering of all Debugger Views.
|
Modifier and Type | Method and Description |
---|---|
CallStackFrame[] |
JPDAThread.getCallStack()
Returns call stack for this thread.
|
CallStackFrame[] |
JPDAThread.getCallStack(int from,
int to)
Returns call stack for this thread on the given indexes.
|
abstract CallStackFrame |
JPDADebugger.getCurrentCallStackFrame()
Returns current stack frame or null.
|
CallStackFrame |
MonitorInfo.getFrame()
Returns the frame at which this monitor was acquired by the owning thread.
|
Modifier and Type | Method and Description |
---|---|
CallStackFrame |
Evaluator.Context.getCallStackFrame()
Get the context call stack frame.
|
Modifier and Type | Method and Description |
---|---|
SmartSteppingCallback.StopOrStep |
SmartSteppingCallback.stopAt(ContextProvider lookupProvider,
CallStackFrame frame,
SmartSteppingFilter f)
This is an enhanced version of former
SmartSteppingCallback.stopHere(org.netbeans.spi.debugger.ContextProvider, org.netbeans.api.debugger.jpda.JPDAThread, org.netbeans.api.debugger.jpda.SmartSteppingFilter)
method, which is called during stepping through debugged application. |