public interface ICDIBreakpointManagement
Modifier and Type | Method and Description |
---|---|
void |
deleteAllBreakpoints()
Remove all the breakpoints
|
void |
deleteBreakpoints(ICDIBreakpoint[] breakpoints)
Remove the breakpoints
|
ICDIBreakpoint[] |
getBreakpoints()
Return all the breakpoints
|
ICDIAddressBreakpoint |
setAddressBreakpoint(int type,
ICDIAddressLocation location,
ICDICondition condition,
boolean deferred)
Set an address Breakpoint
|
ICDIExceptionpoint |
setExceptionBreakpoint(java.lang.String clazz,
boolean stopOnThrow,
boolean stopOnCatch)
Set an exception point.
|
ICDIFunctionBreakpoint |
setFunctionBreakpoint(int type,
ICDIFunctionLocation location,
ICDICondition condition,
boolean deferred)
Set a function breakpoint.
|
ICDILineBreakpoint |
setLineBreakpoint(int type,
ICDILineLocation location,
ICDICondition condition,
boolean deferred)
Set a line breakpoint.
|
ICDIWatchpoint |
setWatchpoint(int type,
int watchType,
java.lang.String expression,
ICDICondition condition)
Set a watchpoint.
|
ICDILineBreakpoint setLineBreakpoint(int type, ICDILineLocation location, ICDICondition condition, boolean deferred) throws CDIException
type
- location
- condition
- deferred
- CDIException
ICDIFunctionBreakpoint setFunctionBreakpoint(int type, ICDIFunctionLocation location, ICDICondition condition, boolean deferred) throws CDIException
type
- location
- condition
- deferred
- CDIException
ICDIAddressBreakpoint setAddressBreakpoint(int type, ICDIAddressLocation location, ICDICondition condition, boolean deferred) throws CDIException
type
- location
- condition
- deferred
- CDIException
ICDIWatchpoint setWatchpoint(int type, int watchType, java.lang.String expression, ICDICondition condition) throws CDIException
type
- watchType
- expression
- condition
- CDIException
ICDIExceptionpoint setExceptionBreakpoint(java.lang.String clazz, boolean stopOnThrow, boolean stopOnCatch) throws CDIException
clazz
- stopOnThrow
- stopOnCatch
- CDIException
ICDIBreakpoint[] getBreakpoints() throws CDIException
CDIException
void deleteBreakpoints(ICDIBreakpoint[] breakpoints) throws CDIException
breakpoints
- CDIException
void deleteAllBreakpoints() throws CDIException
CDIException
Copyright (c) IBM Corp. and others 2004, 2014. All Rights Reserved.