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 |
---|---|
EditorContext.Operation |
JPDAThread.getCurrentOperation()
Returns the operation that is being currently executed on this thread.
|
EditorContext.Operation |
CallStackFrame.getCurrentOperation(String struts)
Returns the current operation (if any) at the location of this call stack frame.
|
Modifier and Type | Method and Description |
---|---|
protected EditorContext.Operation |
EditorContext.createMethodOperation(EditorContext.Position startPosition,
EditorContext.Position endPosition,
EditorContext.Position methodStartPosition,
EditorContext.Position methodEndPosition,
String methodName,
String methodClassType,
int bytecodeIndex)
Creates a method operation.
|
protected EditorContext.Operation |
EditorContext.createMethodOperation(EditorContext.Position startPosition,
EditorContext.Position endPosition,
EditorContext.Position methodStartPosition,
EditorContext.Position methodEndPosition,
String methodName,
String methodClassType,
int bytecodeIndex,
boolean isNative)
Creates a method operation.
|
EditorContext.Operation[] |
EditorContext.getOperations(String url,
int lineNumber,
EditorContext.BytecodeProvider bytecodeProvider)
Get the list of operations that are in expression(s) located at the given line.
|
Modifier and Type | Method and Description |
---|---|
protected void |
EditorContext.addNextOperationTo(EditorContext.Operation operation,
EditorContext.Operation next)
Assign a next operation, concatenates operations.
|
EditorContext.MethodArgument[] |
EditorContext.getArguments(String url,
EditorContext.Operation operation)
Get a list of arguments to the given operation.
|