1
0
Fork 0
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:
Alain Magloire 2002-10-02 04:58:17 +00:00
parent e1f759197d
commit b1b25e2273

View file

@ -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.