From b1b25e2273ceb772e0cb9252a21a50d29d1f397f Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Wed, 2 Oct 2002 04:58:17 +0000 Subject: [PATCH] add new method getRegisters(). --- .../eclipse/cdt/debug/core/cdi/model/ICDITarget.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java index 404f6165481..c8876cd71cb 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java @@ -73,13 +73,20 @@ public interface ICDITarget extends ICDIObject { 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: */ 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 * this target.