diff options
author | aclement <aclement> | 2009-03-24 01:10:47 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-03-24 01:10:47 +0000 |
commit | 2785ffac057a7e7ab13c2f314182543d96a6b692 (patch) | |
tree | 50af573b09a7acbf12bf2838e561782231ff393d | |
parent | 706fea95235110c75ab4853783df7f277bef4307 (diff) | |
download | aspectj-2785ffac057a7e7ab13c2f314182543d96a6b692.tar.gz aspectj-2785ffac057a7e7ab13c2f314182543d96a6b692.zip |
268827: ask for the JDT project state
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java | 5 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java | 5 |
2 files changed, 10 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 3eafcfa60..2549bee63 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java @@ -106,4 +106,9 @@ public class MultiProjTestOutputLocationManager implements IOutputLocationManage public void reportFileRemove(String outputfile, int filetype) { } + public int discoverChangesSince(File dir, long buildtime) { + // TODO Auto-generated method stub + return 0; + } + } diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java index 3d10efaee..579faa430 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java @@ -143,6 +143,11 @@ public class OutputLocationManagerTests extends AbstractMultiProjectIncrementalA public String getSourceFolderForFile(File sourceFile) { return null; } + + public int discoverChangesSince(File dir, long buildtime) { + // TODO Auto-generated method stub + return 0; + } } public void reportFileWrite(String outputfile, int filetype) { |