A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / java / IJavaReconcilingListener.java
index dc67cf5..12aad9a 100644 (file)
@@ -14,7 +14,6 @@ import net.sourceforge.phpdt.core.dom.CompilationUnit;
 
 import org.eclipse.core.runtime.IProgressMonitor;
 
-
 /**
  * Interface of an object listening to Java reconciling.
  * 
@@ -26,13 +25,18 @@ public interface IJavaReconcilingListener {
         * Called before reconciling is started.
         */
        void aboutToBeReconciled();
-       
+
        /**
         * Called after reconciling has been finished.
-        * @param ast                           the compilation unit AST or <code>null</code> if
- *                                                             the working copy was consistent or reconciliation has been cancelled
-        * @param forced                        <code>true</code> iff this reconciliation was forced
-        * @param progressMonitor       the progress monitor
+        * 
+        * @param ast
+        *            the compilation unit AST or <code>null</code> if the working
+        *            copy was consistent or reconciliation has been cancelled
+        * @param forced
+        *            <code>true</code> iff this reconciliation was forced
+        * @param progressMonitor
+        *            the progress monitor
         */
-       void reconciled(CompilationUnit ast, boolean forced, IProgressMonitor progressMonitor);
+       void reconciled(CompilationUnit ast, boolean forced,
+                       IProgressMonitor progressMonitor);
 }