Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IThread.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IThread.java16
1 files changed, 9 insertions, 7 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IThread.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IThread.java
index 2e349e00e..b99b4b23e 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IThread.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IThread.java
@@ -67,14 +67,16 @@ public interface IThread extends IDebugElement, ISuspendResume, IStep, ITerminat
boolean hasStackFrames() throws DebugException;
/**
- * Returns the priority of this thread. The meaning of this
- * number is operating-system dependent.
+ * Returns the priority of this thread. The meaning of this number is
+ * operating-system dependent.
*
* @return thread priority
- * @exception DebugException if this method fails. Reasons include:
- * <ul><li>Failure communicating with the VM. The DebugException's
- * status code contains the underlying exception responsible for
- * the failure.</li>
+ * @exception DebugException if this method fails. Reasons include:
+ * <ul>
+ * <li>Failure communicating with the VM. The
+ * DebugException's status code contains the underlying
+ * exception responsible for the failure.</li>
+ * </ul>
*/
int getPriority() throws DebugException;
@@ -91,7 +93,7 @@ public interface IThread extends IDebugElement, ISuspendResume, IStep, ITerminat
* </ul>
*/
IStackFrame getTopStackFrame() throws DebugException;
-
+
/**
* Returns the name of this thread. Name format is debug model specific, and
* should be specified by a debug model.

Back to the top