mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Follows ICDITarget
This commit is contained in:
parent
482bdca30a
commit
0c39fffd3c
1 changed files with 28 additions and 3 deletions
|
@ -719,7 +719,32 @@ public class Target implements ICDITarget {
|
|||
}
|
||||
|
||||
// public ICDIExceptionBreakpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch)
|
||||
// throws CDIException {
|
||||
// throw new CDIException("Not Implemented"); //$NON-NLS-1$
|
||||
// }
|
||||
// throws CDIException {
|
||||
// throw new CDIException("Not Implemented"); //$NON-NLS-1$
|
||||
//}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.cdt.debug.core.cdi.model.ICDITarget#createCondition(int, java.lang.String)
|
||||
*/
|
||||
public ICDICondition createCondition(int ignoreCount, String expression) {
|
||||
BreakpointManager bMgr = (BreakpointManager)getSession().getBreakpointManager();
|
||||
return bMgr.createCondition(ignoreCount, expression);
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.cdt.debug.core.cdi.model.ICDITarget#createLocation(java.lang.String, java.lang.String, int)
|
||||
*/
|
||||
public ICDILocation createLocation(String file, String function, int line) {
|
||||
BreakpointManager bMgr = (BreakpointManager)getSession().getBreakpointManager();
|
||||
return bMgr.createLocation(file, function, line);
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.cdt.debug.core.cdi.model.ICDITarget#createLocation(long)
|
||||
*/
|
||||
public ICDILocation createLocation(long address) {
|
||||
BreakpointManager bMgr = (BreakpointManager)getSession().getBreakpointManager();
|
||||
return bMgr.createLocation(address);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue