A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / impl / ReferenceContext.java
index 7770bf7..4ebbd6e 100644 (file)
@@ -13,13 +13,15 @@ package net.sourceforge.phpdt.internal.compiler.impl;
 import net.sourceforge.phpdt.internal.compiler.CompilationResult;
 
 /*
- * Implementors are valid compilation contexts from which we can
- * escape in case of error:
- *     For example: method, type or compilation unit.
+ * Implementors are valid compilation contexts from which we can escape in case
+ * of error: For example: method, type or compilation unit.
  */
 public interface ReferenceContext {
        void abort(int abortLevel);
+
        CompilationResult compilationResult();
+
        void tagAsHavingErrors();
+
        boolean hasErrors();
 }