Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjszursze2002-06-12 20:16:07 +0000
committerjszursze2002-06-12 20:16:07 +0000
commitbd97c91198e86b719719c3e0bcf192ed686cdcd7 (patch)
tree02f78e15d4cbb33beabc79fd4340151c2f4e8c58
parentae756f6ae8f326b517437f481d3ce231c8388fca (diff)
downloadeclipse.platform.debug-bd97c91198e86b719719c3e0bcf192ed686cdcd7.tar.gz
eclipse.platform.debug-bd97c91198e86b719719c3e0bcf192ed686cdcd7.tar.xz
eclipse.platform.debug-bd97c91198e86b719719c3e0bcf192ed686cdcd7.zip
cleanup JavaDoc
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java6
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IExpression.java2
2 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java
index 663c166fb..d3389534d 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IDebugTarget.java
@@ -49,7 +49,7 @@ public interface IDebugTarget extends IDebugElement, ITerminate, ISuspendResume,
* @exception DebugException if this method fails. Reasons include:
* <ul><li>Failure communicating with the debug target. The DebugException's
* status code contains the underlying exception responsible for
- * the failure.</li>
+ * the failure.</li></ul>
* @since 2.0
*/
public IThread[] getThreads() throws DebugException;
@@ -61,7 +61,7 @@ public interface IDebugTarget extends IDebugElement, ITerminate, ISuspendResume,
* @exception DebugException if this method fails. Reasons include:
* <ul><li>Failure communicating with the debug target. The DebugException's
* status code contains the underlying exception responsible for
- * the failure.</li>
+ * the failure.</li></ul>
* @since 2.0
*/
public boolean hasThreads() throws DebugException;
@@ -74,7 +74,7 @@ public interface IDebugTarget extends IDebugElement, ITerminate, ISuspendResume,
* @exception DebugException if this method fails. Reasons include:
* <ul><li>Failure communicating with the debug target. The DebugException's
* status code contains the underlying exception responsible for
- * the failure.</li>
+ * the failure.</li></ul>
*/
public String getName() throws DebugException;
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IExpression.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IExpression.java
index 6713ef5be..ee92662f9 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IExpression.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IExpression.java
@@ -14,7 +14,7 @@ package org.eclipse.debug.core.model;
* at a specific location in a program (for example, at a
* breakpoint/line where certain variables referenced in the
* expression are visible/allocated). A user may want to
- * evaluate an expression once to produce a value than can
+ * evaluate an expression once to produce a value that can
* be inspected iteratively, or they may wish to evaluate an
* expression iteratively producing new values each time
* (i.e. as in a watch list).

Back to the top