aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2003-01-03 01:44:33 +0000
committerjhugunin <jhugunin>2003-01-03 01:44:33 +0000
commit623f3bda3626e006774d3f11b16f45709c51458e (patch)
treef933df1cba5f0c87c3190293e858f09daf914e79
parentbf3b347a6997efcaa0a599f5b3903da002197957 (diff)
downloadaspectj-623f3bda3626e006774d3f11b16f45709c51458e.tar.gz
aspectj-623f3bda3626e006774d3f11b16f45709c51458e.zip
more info messages
-rw-r--r--org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompiler.java6
1 files changed, 4 insertions, 2 deletions
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);
}
}