1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 07:15:39 +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

@ -395,8 +395,16 @@ public class BreakpointManager extends SessionObject implements ICDIBreakpointMa
/** /**
* @see org.eclipse.cdt.debug.core.cdi.ICDIBreakpointManager#createLocation(String, String, int) * @see org.eclipse.cdt.debug.core.cdi.ICDIBreakpointManager#createLocation(String, String, int)
*/ */
public ICDILocation createLocation( String file, String function, int line) { public ICDILocation createLocation(String file, String function, int line) {
return new Location(file, function, line); 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);
}
} }