diff options
author | aclement <aclement> | 2009-03-23 02:29:55 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-03-23 02:29:55 +0000 |
commit | acbe3c71ed27b17f5502e6c167703301fc898281 (patch) | |
tree | 3663a2a12631684213e562dd8c8614da12cd88a9 /testing | |
parent | 4d09d96c91c6b4ac0f1d9363c32af7aff5ac718d (diff) | |
download | aspectj-acbe3c71ed27b17f5502e6c167703301fc898281.tar.gz aspectj-acbe3c71ed27b17f5502e6c167703301fc898281.zip |
generalize report API to cover resources and outjar
Diffstat (limited to 'testing')
-rw-r--r-- | testing/src/org/aspectj/testing/ajde/CompileCommand.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java index 916fd2b2b..9460965cb 100644 --- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java +++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java @@ -394,10 +394,10 @@ class MyOutputLocationManager implements IOutputLocationManager { return null; } - public void reportClassFileWrite(String outputfile) { + public void reportFileWrite(String outputfile, int filetype) { } - public void reportClassFileRemove(String outputfile) { + public void reportFileRemove(String outputfile, int filetype) { } } |