1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

add createLocation() and createCondition() where they are the most usefull.

This commit is contained in:
Alain Magloire 2002-08-30 04:52:38 +00:00
parent 88c2aee2e7
commit a852442246

View file

@ -90,4 +90,17 @@ public interface ICDIBreakpointManager extends ICDISessionObject
ICDICatchEvent event,
String expression,
ICDICondition condition ) throws CDIException;
/**
* Return a ICDICondition
*/
ICDICondition createCondition(int ignoreCount, String expression);
/**
* Returns a ICDILocation
*/
ICDILocation createLocation(String file, String function, int line);
}