Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IEvaluationRunnable.java')
-rw-r--r--org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IEvaluationRunnable.java31
1 files changed, 17 insertions, 14 deletions
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IEvaluationRunnable.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IEvaluationRunnable.java
index cd6764262..c3a3576ef 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IEvaluationRunnable.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/debug/core/IEvaluationRunnable.java
@@ -10,31 +10,34 @@
*******************************************************************************/
package org.eclipse.jdt.debug.core;
-
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.DebugException;
-
+
/**
- * A runnable that represents one logical evaluation
- * to be run in a target thread.
+ * A runnable that represents one logical evaluation to be run in a target
+ * thread.
* <p>
* Clients are intended to implement this interface.
* </p>
*
- * @see org.eclipse.jdt.debug.core.IJavaThread#runEvaluation(IEvaluationRunnable, IProgressMonitor, int, boolean)
+ * @see org.eclipse.jdt.debug.core.IJavaThread#runEvaluation(IEvaluationRunnable,
+ * IProgressMonitor, int, boolean)
* @since 2.0
- */
+ */
public interface IEvaluationRunnable {
-
+
/**
- * Runs this evaluation in the specified thread, reporting
- * progress to the given progress monitor.
+ * Runs this evaluation in the specified thread, reporting progress to the
+ * given progress monitor.
*
- * @param thread the thread in which to run the evaluation
- * @param monitor progress monitor (may be <code>null</code>)
- * @exception DebugException if an exception occurs during
- * the evaluation
+ * @param thread
+ * the thread in which to run the evaluation
+ * @param monitor
+ * progress monitor (may be <code>null</code>)
+ * @exception DebugException
+ * if an exception occurs during the evaluation
*/
- public abstract void run(IJavaThread thread, IProgressMonitor monitor) throws DebugException;
+ public abstract void run(IJavaThread thread, IProgressMonitor monitor)
+ throws DebugException;
}

Back to the top