]> source.dussan.org Git - aspectj.git/commitdiff
more info messages
authorjhugunin <jhugunin>
Fri, 3 Jan 2003 01:44:33 +0000 (01:44 +0000)
committerjhugunin <jhugunin>
Fri, 3 Jan 2003 01:44:33 +0000 (01:44 +0000)
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompiler.java

index 79eb39f4bd665f08672bec9c688ccd04637e10b2..acb47866c9751c731e301fd67553771a53b83e01 100644 (file)
@@ -16,6 +16,7 @@ package org.aspectj.ajdt.internal.compiler;
 import java.util.Map;
 
 import org.aspectj.ajdt.internal.compiler.lookup.EclipseWorld;
+import org.aspectj.bridge.IMessage;
 import org.eclipse.jdt.internal.compiler.*;
 import org.eclipse.jdt.internal.compiler.Compiler;
 import org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration;
@@ -56,10 +57,11 @@ public class AjCompiler extends Compiler {
         * name binding.
         */
        protected void process(CompilationUnitDeclaration unit, int i) {
-               super.process(unit, i);
-               
                EclipseWorld world = 
                        EclipseWorld.forLookupEnvironment(lookupEnvironment);
+               world.showMessage(IMessage.INFO, "compiling " + new String(unit.getFileName()), null, null);
+               super.process(unit, i);
+                               
                world.finishedCompilationUnit(unit);
        }
 }