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 - CDIExceptionICDIFunctionBreakpoint setFunctionBreakpoint(int type, ICDIFunctionLocation location, ICDICondition condition, boolean deferred) throws CDIException
type - location - condition - deferred - CDIExceptionICDIAddressBreakpoint setAddressBreakpoint(int type, ICDIAddressLocation location, ICDICondition condition, boolean deferred) throws CDIException
type - location - condition - deferred - CDIExceptionICDIWatchpoint setWatchpoint(int type, int watchType, java.lang.String expression, ICDICondition condition) throws CDIException
type - watchType - expression - condition - CDIExceptionICDIExceptionpoint setExceptionBreakpoint(java.lang.String clazz, boolean stopOnThrow, boolean stopOnCatch) throws CDIException
clazz - stopOnThrow - stopOnCatch - CDIExceptionICDIBreakpoint[] getBreakpoints() throws CDIException
CDIExceptionvoid deleteBreakpoints(ICDIBreakpoint[] breakpoints) throws CDIException
breakpoints - CDIExceptionvoid deleteAllBreakpoints()
throws CDIException
CDIExceptionCopyright (c) IBM Corp. and others 2004, 2014. All Rights Reserved.