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:
parent
5507f1ee91
commit
1d30495e26
1 changed files with 10 additions and 0 deletions
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue