Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2001-09-12 15:41:16 +0000
committerDarin Swanson2001-09-12 15:41:16 +0000
commit0449a64e4c5f5831c91408db89d012cc37140645 (patch)
tree03d5473652ffb7b00f1b61841dc3e9721c7a686b
parent517b2023c954df6a92221a3477cc4fda20338604 (diff)
downloadeclipse.platform.debug-0449a64e4c5f5831c91408db89d012cc37140645.tar.gz
eclipse.platform.debug-0449a64e4c5f5831c91408db89d012cc37140645.tar.xz
eclipse.platform.debug-0449a64e4c5f5831c91408db89d012cc37140645.zip
1GEYLEB: ITPDUI:ALL - Would like to terminate process when browsing stack trace
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStackFrame.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStackFrame.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStackFrame.java
index 8714b8003..9665a190e 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStackFrame.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStackFrame.java
@@ -17,6 +17,7 @@ import org.eclipse.debug.core.DebugException;
* <ul>
* <li>suspend/resume (convenience to resume this stack frame's thread)
* <li>stepping
+ * <li>termination (convience to terminate this stack frame's thread or debug target)
* </ul>
* <p>
* An implementation may choose to re-use or discard
@@ -41,10 +42,11 @@ import org.eclipse.debug.core.DebugException;
* from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
* (repeatedly) as the API evolves.
* </p>
- * @see ISuspendResume
* @see IStep
+ * @see ISuspendResume
+ * @see ITerminate
*/
-public interface IStackFrame extends IDebugElement, IStep, ISuspendResume {
+public interface IStackFrame extends IDebugElement, IStep, ISuspendResume, ITerminate {
/**
* Returns the line number of the instruction pointer in
* this stack frame that corresponds to a line in an associated source

Back to the top