1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

2004-11-09 Alain Magloire

Put possiblity to set Exception breakpoint
	* cdi/org/eclipse/cdt/debug/core/cdi/ICDIBreakpointManagement.java
This commit is contained in:
Alain Magloire 2004-11-09 20:39:40 +00:00
parent 8291a5e66d
commit 948da21d8e
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2004-11-09 Alain Magloire
Put possiblity to set Exception breakpoint
* cdi/org/eclipse/cdt/debug/core/cdi/ICDIBreakpointManagement.java
2004-11-08 Alain Magloire
Bug in CVariableFactory for globals, the filename of the
binary was use instead of the filename of the symbol.
@ -6,7 +10,7 @@
2004-11-08 Alain Magloire
New class ICDIFunctionFinished.
It return the return value of the function.
* cdi/org/eclipse/cdt/debug/mi/core/cdi/ICDIFunctionFinished.java
* cdi/org/eclipse/cdt/debug/core/cdi/ICDIFunctionFinished.java
2004-11-04 Mikhail Khodjaiants
Removed "Refresh" and "Auto-Refresh" actions support for shared libraries.

View file

@ -33,6 +33,6 @@ public interface ICDIBreakpointManagement {
void deleteAllBreakpoints() throws CDIException;
// ICDIExceptionBreakpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch) throws CDIException;
ICDIExceptionpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch) throws CDIException;
}