From 5f1ed1e7ec8a68c63d0dc88d18cc6140d7406b7a Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Tue, 27 Aug 2002 21:00:31 +0000 Subject: [PATCH] Added the 'getCurrentThread' method. --- .../org/eclipse/cdt/debug/core/cdi/model/ICDITarget.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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 c4a749ee73a..ec18d619315 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 @@ -215,4 +215,12 @@ public interface ICDITarget extends ICDIObject { * @throws CDIException if this method fails. Reasons include: */ void finish() throws CDIException; + + /** + * Returns the currently selected thread. + * + * @return the currently selected thread + * @throws CDIException if this method fails. Reasons include: + */ + ICDIThread getCurrentThread() throws CDIException; }