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 |
---|---|
abstract Variable |
JPDADebugger.evaluate(String expression)
Evaluates given expression in the current context.
|
String |
JPDAWatch.getToStringValue()
Calls
Object.toString() in debugged JVM and returns
its value. |
String |
ObjectVariable.getToStringValue()
Calls
Object.toString() in debugged JVM and returns
its value. |
Variable |
JPDAClassType.invokeMethod(String methodName,
String signature,
Variable[] arguments)
Calls given static method in debugged JVM on this class and returns
its value.
|
Variable |
ObjectVariable.invokeMethod(String methodName,
String signature,
Variable[] arguments)
Calls given method in debugged JVM on this instance and returns
its value.
|
void |
MutableVariable.setValue(String value)
Sets a value represented as text, to this variable.
|
void |
Field.setValue(String value)
Sets value of this field represented as text.
|
void |
LocalVariable.setValue(String value)
Sets value of this local represented as text.
|
void |
JPDAWatch.setValue(String value)
Sets value of this local represented as text.
|
Modifier and Type | Method and Description |
---|---|
Evaluator.Result |
Evaluator.evaluate(Evaluator.Expression<PreprocessedInfo> expression,
Evaluator.Context context)
Evaluates given expression and provide the result.
|