Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IErrorReportingExpression.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IErrorReportingExpression.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IErrorReportingExpression.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IErrorReportingExpression.java
index 3ba24d400..9d715c733 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IErrorReportingExpression.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IErrorReportingExpression.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -13,7 +13,7 @@ package org.eclipse.debug.core.model;
/**
* An expression that can report errors which occurred during the
* expression's evaluation.
- *
+ *
* @since 3.0
*/
public interface IErrorReportingExpression extends IExpression {
@@ -21,7 +21,7 @@ public interface IErrorReportingExpression extends IExpression {
* Returns whether this expression has errors to report. An expression
* can have errors if errors were generated the last time its value was
* computed
- *
+ *
* @return whether this expression's result has errors
*/
public boolean hasErrors();
@@ -29,7 +29,7 @@ public interface IErrorReportingExpression extends IExpression {
* Returns this expression's error messages, if any. An expression can
* have errors if errors were generated the last time its value was
* computed.
- *
+ *
* @return this expression's error messages
*/
public String[] getErrorMessages();

Back to the top