1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +02:00

createLocation(long) new method.

This commit is contained in:
Alain Magloire 2003-01-06 16:32:16 +00:00
parent 115779c65b
commit 13b78e7300

View file

@ -399,4 +399,12 @@ public class BreakpointManager extends SessionObject implements ICDIBreakpointMa
return new Location(file, function, line);
}
/**
* @see org.eclipse.cdt.debug.core.cdi.ICDIBreakpointManager#createLocation(long)
*/
public ICDILocation createLocation(long address) {
return new Location(address);
}
}