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 | Class and Description |
---|---|
class |
ClassLoadUnloadBreakpoint
Notifies about class load and class unload events.
|
class |
ExceptionBreakpoint
Notifies about exceptions thrown in debugged JVM.
|
class |
FieldBreakpoint
Notifies about variable change or access events.
|
class |
LineBreakpoint
Notifies about line breakpoint events.
|
class |
MethodBreakpoint
Notifies about method entry events.
|
class |
ThreadBreakpoint
Notifies about thread started and dead events.
|
Modifier and Type | Method and Description |
---|---|
JPDABreakpoint |
JPDAThread.getCurrentBreakpoint()
Returns the current breakpoint hit by this thread.
|
Modifier and Type | Method and Description |
---|---|
protected void |
JPDADebugger.fireBreakpointEvent(JPDABreakpoint breakpoint,
JPDABreakpointEvent event)
Helper method that fires JPDABreakpointEvent on JPDABreakpoints.
|
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 |
---|---|
abstract BreakpointsClassFilter.ClassNames |
BreakpointsClassFilter.filterClassNames(BreakpointsClassFilter.ClassNames classNames,
JPDABreakpoint breakpoint)
Provide a modified set of class names.
|
void |
BreakpointStratifier.stratify(JPDABreakpoint breakpoint)
Adjust the breakpoint properties according to its specific language stratum.
|