From 61d1cb0d3dbd821cd484278bca68f4af3ba9035f Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Mon, 27 Jan 2003 03:28:40 +0000 Subject: [PATCH] new method getCurrentStackFrame() --- .../org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java index e4d2bc079ef..825c2c704d8 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIThread.java @@ -54,6 +54,11 @@ public interface ICDIThread extends ICDIObject { */ void setCurrentStackFrame(ICDIStackFrame current) throws CDIException; + /** + * Set the current stackframe. + * @return ICDIStackFrame + */ + ICDIStackFrame getCurrentStackFrame() throws CDIException; /** * Returns whether this thread is currently suspended. * @@ -138,4 +143,5 @@ public interface ICDIThread extends ICDIObject { * Returns true if the threads are the same. */ boolean equals(ICDIThread thead); + }