Package | Description |
---|---|
org.netbeans.api.debugger.jpda |
JPDA Debugger APIs provide representation of JDI functionality.
|
org.netbeans.api.debugger.jpda.event | |
org.netbeans.spi.debugger.jpda |
JPDA Debugger SPIs defines support for Smart Stepping, Variables Filtering
and filtering of all Debugger Views.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ClassVariable
Represents an instance of java.lang.Class from the target VM.
|
interface |
Field
Represents one field.
|
interface |
JPDAWatch
Represents watch in JPDA debugger.
|
interface |
LocalVariable
Represents one local.
|
interface |
ObjectVariable
Represents instance of some object in debugged JVM.
|
interface |
ReturnVariable
Represents a return value from a method.
|
interface |
Super
Represents super class of some object and its value.
|
interface |
This
Represents "this" value for call stack frame.
|
Modifier and Type | Method and Description |
---|---|
abstract Variable |
JPDADebugger.evaluate(String expression)
Evaluates given expression in the current context.
|
Variable |
ObjectVariable.invokeMethod(String methodName,
String signature,
Variable[] arguments)
Calls given method in debugged JVM on this instance and returns
its value.
|
Modifier and Type | Method and Description |
---|---|
Variable |
ObjectVariable.invokeMethod(String methodName,
String signature,
Variable[] arguments)
Calls given method in debugged JVM on this instance and returns
its value.
|
Modifier and Type | Method and Description |
---|---|
Variable |
JPDABreakpointEvent.getVariable()
Returns context variable.
|
Constructor and Description |
---|
JPDABreakpointEvent(JPDABreakpoint sourceBreakpoint,
JPDADebugger debugger,
int conditionResult,
JPDAThread thread,
com.sun.jdi.ReferenceType referenceType,
Variable variable)
Creates a new instance of JPDABreakpointEvent.
|
JPDABreakpointEvent(JPDABreakpoint sourceBreakpoint,
JPDADebugger debugger,
Throwable conditionException,
JPDAThread thread,
com.sun.jdi.ReferenceType referenceType,
Variable variable)
Creates a new instance of JPDABreakpointEvent.
|
Modifier and Type | Method and Description |
---|---|
Variable |
EditorContext.Operation.getReturnValue()
Get the return value of this operation.
|
Variable |
Evaluator.Result.getVariable()
Get the result variable
|
Modifier and Type | Method and Description |
---|---|
abstract Action[] |
VariablesFilter.getActions(NodeActionsProvider original,
Variable variable)
Returns set of actions for given variable.
|
Action[] |
VariablesFilterAdapter.getActions(NodeActionsProvider original,
Variable variable)
Returns set of actions for given variable.
|
abstract Object[] |
VariablesFilter.getChildren(TreeModel original,
Variable variable,
int from,
int to)
Returns filtered children for given variable on given indexes.
|
Object[] |
VariablesFilterAdapter.getChildren(TreeModel original,
Variable variable,
int from,
int to)
Returns filtered children for given variable on given indexes.
|
abstract int |
VariablesFilter.getChildrenCount(TreeModel original,
Variable variable)
Returns number of filtered children for given variable.
|
int |
VariablesFilterAdapter.getChildrenCount(TreeModel original,
Variable variable)
Returns number of filtered children for given variable.
|
abstract String |
VariablesFilter.getDisplayName(NodeModel original,
Variable variable)
Returns filterred display name for given variable.
|
String |
VariablesFilterAdapter.getDisplayName(NodeModel original,
Variable variable)
Returns filterred display name for given variable.
|
abstract String |
VariablesFilter.getIconBase(NodeModel original,
Variable variable)
Returns filterred icon for given variable.
|
String |
VariablesFilterAdapter.getIconBase(NodeModel original,
Variable variable)
Returns filterred icon for given variable.
|
abstract String |
VariablesFilter.getShortDescription(NodeModel original,
Variable variable)
Returns filterred tooltip for given variable.
|
String |
VariablesFilterAdapter.getShortDescription(NodeModel original,
Variable variable)
Returns filterred tooltip for given variable.
|
abstract Object |
VariablesFilter.getValueAt(TableModel original,
Variable variable,
String columnID)
Returns filterred value to be displayed in column
columnID
and for variable variable . |
Object |
VariablesFilterAdapter.getValueAt(TableModel original,
Variable variable,
String columnID)
Returns filterred value to be displayed in column
columnID
and for variable variable . |
abstract boolean |
VariablesFilter.isLeaf(TreeModel original,
Variable variable)
Returns true if variable is leaf.
|
boolean |
VariablesFilterAdapter.isLeaf(TreeModel original,
Variable variable)
Returns true if variable is leaf.
|
abstract boolean |
VariablesFilter.isReadOnly(TableModel original,
Variable variable,
String columnID)
Filters original isReadOnly value from given table model.
|
boolean |
VariablesFilterAdapter.isReadOnly(TableModel original,
Variable variable,
String columnID)
Filters original isReadOnly value from given table model.
|
abstract void |
VariablesFilter.performDefaultAction(NodeActionsProvider original,
Variable variable)
Performs default action for given variable.
|
void |
VariablesFilterAdapter.performDefaultAction(NodeActionsProvider original,
Variable variable)
Performs default action for given variable.
|
void |
EditorContext.Operation.setReturnValue(Variable returnValue)
Set the return value of this operation.
|
abstract void |
VariablesFilter.setValueAt(TableModel original,
Variable variable,
String columnID,
Object value)
Changes a value displayed in column
columnID
for variable variable . |
void |
VariablesFilterAdapter.setValueAt(TableModel original,
Variable variable,
String columnID,
Object value)
Changes a value displayed in column
columnID
for variable variable . |
Constructor and Description |
---|
Evaluator.Result(Variable var)
Create result from
Variable . |
Built on March 18 2014. | Portions Copyright 1997-2014 Sun Microsystems, Inc. All rights reserved.