X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/java/IJavaReconcilingListener.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/java/IJavaReconcilingListener.java index 6fc5499..12aad9a 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/java/IJavaReconcilingListener.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/java/IJavaReconcilingListener.java @@ -10,10 +10,9 @@ *******************************************************************************/ package net.sourceforge.phpdt.internal.ui.text.java; -import org.eclipse.core.runtime.IProgressMonitor; - 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 null if - * the working copy was consistent or reconciliation has been cancelled - * @param forced true iff this reconciliation was forced - * @param progressMonitor the progress monitor + * + * @param ast + * the compilation unit AST or null if the working + * copy was consistent or reconciliation has been cancelled + * @param forced + * true 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); }