1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

added new method createMemoryBlock take string as the first

argument.
This commit is contained in:
Alain Magloire 2002-10-17 14:29:11 +00:00
parent 5507f1ee91
commit 1d30495e26

View file

@ -16,6 +16,16 @@ import org.eclipse.cdt.debug.core.cdi.model.ICDIMemoryBlock;
*/
public interface ICDIMemoryManager extends ICDISessionObject
{
/**
* Returns a memory block specified by given identifier.
*
* @param address
* @param length - how much for address
* @return a memory block with the specified identifier
* @throws CDIException on failure. Reasons include:
*/
ICDIMemoryBlock createMemoryBlock(String address, int length) throws CDIException;
/**
* Returns a memory block specified by given identifier.
*