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;
* 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);
}
}