diff options
author | aclement <aclement> | 2009-03-23 02:28:48 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-03-23 02:28:48 +0000 |
commit | 8026d8ce7bb8798247e367dea0b40c120498d02b (patch) | |
tree | 6eb04ab4485ee99c5d12fb750ffd1d22f8ef5298 /ajde | |
parent | 838a7aa6a6551528230b8e6d5d07e9f3bf4c8a94 (diff) | |
download | aspectj-8026d8ce7bb8798247e367dea0b40c120498d02b.tar.gz aspectj-8026d8ce7bb8798247e367dea0b40c120498d02b.zip |
generalize report API to cover resources and outjar
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java b/ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java index 5405d2fb4..d18fa3f16 100644 --- a/ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java +++ b/ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java @@ -32,7 +32,7 @@ public class TestOutputLocationManager implements IOutputLocationManager { this.testProjectOutputPath = testProjectPath + File.separator + "bin"; } - public void reportClassFileWrite(String outputfile) { + public void reportFileWrite(String outputfile, int filetype) { } public String getUniqueIdentifier() { @@ -87,7 +87,7 @@ public class TestOutputLocationManager implements IOutputLocationManager { return null; } - public void reportClassFileRemove(String outputfile) { + public void reportFileRemove(String outputfile, int filetype) { } } |