Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjszursze2002-06-12 21:05:15 +0000
committerjszursze2002-06-12 21:05:15 +0000
commit0ac56c2e2835d874f9aeacdebe6bde39edcdec81 (patch)
tree467e81bfaea8355ef25bcebfa295ca8f50b04979 /org.eclipse.debug.core/core/org/eclipse/debug/core/model
parentf4b2bb81e0a1d1b275ba7031bf6bc1ad4a059a4c (diff)
downloadeclipse.platform.debug-0ac56c2e2835d874f9aeacdebe6bde39edcdec81.tar.gz
eclipse.platform.debug-0ac56c2e2835d874f9aeacdebe6bde39edcdec81.tar.xz
eclipse.platform.debug-0ac56c2e2835d874f9aeacdebe6bde39edcdec81.zip
cleanup JavaDoc
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStackFrame.java2
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStep.java2
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamMonitor.java2
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamsProxy.java1
4 files changed, 5 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 dbdad2fe1..bf9d787d7 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
@@ -68,6 +68,7 @@ public interface IStackFrame extends IDebugElement, IStep, ISuspendResume, ITerm
* <ul><li>Failure communicating with the debug target. The DebugException's
* status code contains the underlying exception responsible for
* the failure.</li>
+ * </ul>
* @since 2.0
*/
public boolean hasVariables() throws DebugException;
@@ -168,6 +169,7 @@ public interface IStackFrame extends IDebugElement, IStep, ISuspendResume, ITerm
* <ul><li>Failure communicating with the debug target. The DebugException's
* status code contains the underlying exception responsible for
* the failure.</li>
+ * </ul>
* @since 2.0
*/
public boolean hasRegisterGroups() throws DebugException;
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStep.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStep.java
index e45970d3e..b27ce940b 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStep.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStep.java
@@ -39,7 +39,7 @@ public interface IStep {
* <p>
* For example, a thread is considered to be stepping
* after the <code>stepOver</code> call until the step over is completed,
- * a breakpoint is reached, an exception is thrown, or the thread or is
+ * a breakpoint is reached, an exception is thrown, or the thread or debug target is
* terminated.
* </p>
*
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamMonitor.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamMonitor.java
index a291aa5ce..0c8e4a807 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamMonitor.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamMonitor.java
@@ -8,7 +8,7 @@ package org.eclipse.debug.core.model;
import org.eclipse.debug.core.IStreamListener;
/**
- * A stream monitor manages the contents of a stream a process
+ * A stream monitor manages the contents of the stream a process
* is writing to, and notifies registered listeners of changes in
* the stream.
* <p>
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamsProxy.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamsProxy.java
index c43acae4d..01c9741d8 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamsProxy.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IStreamsProxy.java
@@ -42,6 +42,7 @@ public interface IStreamsProxy {
* Writes the given text to the output stream connected to the
* standard input stream of this proxy's process.
*
+ * @param input the text to be written
* @exception IOException when an error occurs writing to the
* underlying <code>OutputStream</code>.
*

Back to the top