Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDropToFrame.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDropToFrame.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDropToFrame.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDropToFrame.java
index 79229afd4..2fed49938 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDropToFrame.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDropToFrame.java
@@ -16,7 +16,7 @@ import org.eclipse.debug.core.DebugException;
* Provides the ability to drop to frame. Drop to frame
* generally means popping a selected stack frame (and all frames above it) from
* the execution stack and then stepping back into the frame.
- *
+ *
* @since 3.1
*/
public interface IDropToFrame {
@@ -26,14 +26,14 @@ public interface IDropToFrame {
* @return whether this element can currently perform a drop to frame
*/
public boolean canDropToFrame();
-
+
/**
* Performs a drop to frame on this element. Implementations must generate
* events such that debug clients can update appropriately, such as corresponding
* <code>RESUME</code> and <code>SUSPEND</code> events, or a single <code>CHANGE</code>
* event when the drop is complete. Implementations should implement drop to frame
- * in a non-blocking fashion.
- *
+ * in a non-blocking fashion.
+ *
* @throws DebugException on failure. Reasons include:<ul>
* <li>TARGET_REQUEST_FAILED - The request failed in the target</li>
* <li>NOT_SUPPORTED - The capability is not supported by the target</li>

Back to the top