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 | Interface and Description |
---|---|
interface |
ClassVariable
Represents an instance of java.lang.Class from the target VM.
|
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 |
---|---|
ObjectVariable |
JPDAClassType.getClassLoader()
Gets the classloader object which loaded the class corresponding to this type.
|
ObjectVariable |
JPDAThread.getContendedMonitor()
Returns monitor this thread is waiting on.
|
ObjectVariable[] |
MethodBreakpoint.getInstanceFilters(JPDADebugger session)
Get the instance filter for a specific debugger session.
|
ObjectVariable[] |
LineBreakpoint.getInstanceFilters(JPDADebugger session)
Get the instance filter for a specific debugger session.
|
ObjectVariable[] |
FieldBreakpoint.getInstanceFilters(JPDADebugger session)
Get the instance filter for a specific debugger session.
|
ObjectVariable |
MonitorInfo.getMonitor()
Returns the acquired monitor object
|
ObjectVariable[] |
JPDAThread.getOwnedMonitors()
Returns monitors owned by this thread.
|
Modifier and Type | Method and Description |
---|---|
void |
MethodBreakpoint.setInstanceFilters(JPDADebugger session,
ObjectVariable[] instances)
Set the instance filter for a specific debugger session.
|
void |
LineBreakpoint.setInstanceFilters(JPDADebugger session,
ObjectVariable[] instances)
Set the instance filter for a specific debugger session.
|
void |
FieldBreakpoint.setInstanceFilters(JPDADebugger session,
ObjectVariable[] instances)
Set the instance filter for a specific debugger session.
|
Modifier and Type | Method and Description |
---|---|
ObjectVariable |
Evaluator.Context.getContextVariable()
Get an optional context variable.
|