aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraclement <aclement>2009-03-20 17:38:17 +0000
committeraclement <aclement>2009-03-20 17:38:17 +0000
commitce3f4051143a6fb56c5690c9ce824c55cf7baad6 (patch)
treeb5f5da6d293786c65ec9cffb32decec85de30b7d
parent496eabc6e272c3218c7eb0a0220ea2b4fe8ed1e9 (diff)
downloadaspectj-ce3f4051143a6fb56c5690c9ce824c55cf7baad6.tar.gz
aspectj-ce3f4051143a6fb56c5690c9ce824c55cf7baad6.zip
268827: tell ajdt about class file removal
-rw-r--r--tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java3
-rw-r--r--tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java6
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java
index 3708c8233..ca22088eb 100644
--- a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java
+++ b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java
@@ -103,4 +103,7 @@ public class MultiProjTestOutputLocationManager implements IOutputLocationManage
// System.err.println(">>>" + outputfile);
}
+ public void reportClassFileRemove(String outputfile) {
+ }
+
}
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java
index 8ee27015e..e840a672a 100644
--- a/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java
+++ b/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java
@@ -102,6 +102,9 @@ public class OutputLocationManagerTests extends AbstractMultiProjectIncrementalA
public void reportClassFileWrite(String outputfile) {
}
+ public void reportClassFileRemove(String outputfile) {
+ }
+
public File getOutputLocationForClass(File compilationUnit) {
String relativePath = "";
String compilationUnitName = compilationUnit.getAbsolutePath();
@@ -145,4 +148,7 @@ public class OutputLocationManagerTests extends AbstractMultiProjectIncrementalA
public void reportClassFileWrite(String outputfile) {
}
+ public void reportClassFileRemove(String outputfile) {
+ }
+
}