aboutsummaryrefslogtreecommitdiffstats
path: root/ajde.core
diff options
context:
space:
mode:
Diffstat (limited to 'ajde.core')
-rw-r--r--ajde.core/src/org/aspectj/ajde/core/IOutputLocationManager.java2
-rw-r--r--ajde.core/src/org/aspectj/ajde/core/internal/OutputLocationAdapter.java4
2 files changed, 6 insertions, 0 deletions
diff --git a/ajde.core/src/org/aspectj/ajde/core/IOutputLocationManager.java b/ajde.core/src/org/aspectj/ajde/core/IOutputLocationManager.java
index dc8f24b1f..d9f9a6d34 100644
--- a/ajde.core/src/org/aspectj/ajde/core/IOutputLocationManager.java
+++ b/ajde.core/src/org/aspectj/ajde/core/IOutputLocationManager.java
@@ -77,6 +77,8 @@ public interface IOutputLocationManager {
*/
void reportFileRemove(String file, int fileType);
+ int discoverChangesSince(File dir, long buildtime);
+
// match numbers in CompilationResultDestinationManager - ought to factor into super interface
int FILETYPE_UNKNOWN = 0;
int FILETYPE_CLASS = 1;
diff --git a/ajde.core/src/org/aspectj/ajde/core/internal/OutputLocationAdapter.java b/ajde.core/src/org/aspectj/ajde/core/internal/OutputLocationAdapter.java
index 65a8aaafd..380ab1c59 100644
--- a/ajde.core/src/org/aspectj/ajde/core/internal/OutputLocationAdapter.java
+++ b/ajde.core/src/org/aspectj/ajde/core/internal/OutputLocationAdapter.java
@@ -57,4 +57,8 @@ public class OutputLocationAdapter implements CompilationResultDestinationManage
this.locationManager.reportFileRemove(outputfile, filetype);
}
+ public int discoverChangesSince(File dir, long buildtime) {
+ return this.locationManager.discoverChangesSince(dir,buildtime);
+ }
+
}