From: jhugunin Date: Fri, 3 Jan 2003 01:44:33 +0000 (+0000) Subject: more info messages X-Git-Tag: V_1_1_b5~175 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=623f3bda3626e006774d3f11b16f45709c51458e;p=aspectj.git more info messages --- diff --git a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompiler.java b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompiler.java index 79eb39f4b..acb47866c 100644 --- a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompiler.java +++ b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompiler.java @@ -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); } }