Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/eval/org/eclipse/jdt/debug/eval/IEvaluationListener.java')
-rw-r--r--org.eclipse.jdt.debug/eval/org/eclipse/jdt/debug/eval/IEvaluationListener.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/debug/eval/IEvaluationListener.java b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/debug/eval/IEvaluationListener.java
index 2707c939a..905c167ff 100644
--- a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/debug/eval/IEvaluationListener.java
+++ b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/debug/eval/IEvaluationListener.java
@@ -10,26 +10,26 @@
*******************************************************************************/
package org.eclipse.jdt.debug.eval;
-
/**
- * Evaluation results are reported to evaluation listeners
- * on the completion of an evaluation. The evaluation
- * may fail but a result will be supplied indicating the
- * problems.
+ * Evaluation results are reported to evaluation listeners on the completion of
+ * an evaluation. The evaluation may fail but a result will be supplied
+ * indicating the problems.
* <p>
* Clients may implement this interface.
* </p>
+ *
* @see IEvaluationResult
* @since 2.0
*/
public interface IEvaluationListener {
-
+
/**
- * Notifies this listener that an evaluation has completed, with the
- * given result.
+ * Notifies this listener that an evaluation has completed, with the given
+ * result.
*
- * @param result The result from the evaluation
+ * @param result
+ * The result from the evaluation
* @see IEvaluationResult
*/
public void evaluationComplete(IEvaluationResult result);

Back to the top