mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
add new method getRegisters().
This commit is contained in:
parent
e1f759197d
commit
b1b25e2273
1 changed files with 9 additions and 2 deletions
|
@ -73,13 +73,20 @@ public interface ICDITarget extends ICDIObject {
|
||||||
throws CDIException;
|
throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the register associated with this target.
|
* Returns the register Object associated with this target.
|
||||||
*
|
*
|
||||||
* @return a collection of register groups
|
* @return a collection of register object.
|
||||||
* @throws CDIException if this method fails. Reasons include:
|
* @throws CDIException if this method fails. Reasons include:
|
||||||
*/
|
*/
|
||||||
ICDIRegisterObject[] getRegisterObjects() throws CDIException;
|
ICDIRegisterObject[] getRegisterObjects() throws CDIException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the register associated with this target.
|
||||||
|
* @return a collection of register.
|
||||||
|
* @throws CDIException if this method fails.
|
||||||
|
*/
|
||||||
|
ICDIRegister[] getRegisters(ICDIRegisterObject[] regObjects) throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a collection of global variables associated with
|
* Returns a collection of global variables associated with
|
||||||
* this target.
|
* this target.
|
||||||
|
|
Loading…
Add table
Reference in a new issue