aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authoraclement <aclement>2006-07-24 11:05:49 +0000
committeraclement <aclement>2006-07-24 11:05:49 +0000
commitbeaeab3dbf69175b3f08c30bb6ae82aa6b4eb728 (patch)
tree26c99fd1ff42af254ffc19d4c03c4adaf6a87a7f /testing
parent97b3ae73a8d18db916f0fa10189d658003eb068c (diff)
downloadaspectj-beaeab3dbf69175b3f08c30bb6ae82aa6b4eb728.tar.gz
aspectj-beaeab3dbf69175b3f08c30bb6ae82aa6b4eb728.zip
pr145689 - telling AJDT through the progress monitor (rather than a debug interface) whether the build was full or incremental.
Diffstat (limited to 'testing')
-rw-r--r--testing/src/org/aspectj/testing/ajde/CompileCommand.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
index 8be020895..246e3d216 100644
--- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java
+++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
@@ -114,8 +114,8 @@ public class CompileCommand implements ICommand {
TaskListManager taskListManager = myHandler;
BuildProgressMonitor buildProgressMonitor =
new DefaultBuildProgressMonitor(new Frame()) {
- public void finish() {
- super.finish();
+ public void finish(boolean b) {
+ super.finish(b);
setEndTime(System.currentTimeMillis());
}
};
@@ -280,6 +280,10 @@ class MyTaskListManager
hasWarning = true;
}
}
+ public void buildSuccessful(boolean wasFullBuild) {
+ // TODO Auto-generated method stub
+
+ }
}
class VoidInvocationHandler implements InvocationHandler {