aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorAndy Clement <aclement@gopivotal.com>2014-08-20 08:00:10 -0700
committerAndy Clement <aclement@gopivotal.com>2014-08-20 08:00:10 -0700
commit1e2744d37cd2ac3438f8f1e6b8aae7c4a6c6b8d6 (patch)
tree5516c617e821bc56fb2e77a64553fcfc69e3794c /testing
parent1da68158a802f47b42194dcb040be47526703ed6 (diff)
downloadaspectj-1e2744d37cd2ac3438f8f1e6b8aae7c4a6c6b8d6.tar.gz
aspectj-1e2744d37cd2ac3438f8f1e6b8aae7c4a6c6b8d6.zip
enabling AJDT to use annotation processors
Diffstat (limited to 'testing')
-rw-r--r--testing/src/org/aspectj/testing/ajde/CompileCommand.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
index 2f819db44..2fd748ff2 100644
--- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java
+++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
@@ -370,6 +370,14 @@ class MyCompilerConfig implements ICompilerConfiguration {
return null;
}
+ public String getProcessor() {
+ return null;
+ }
+
+ public String getProcessorPath() {
+ return null;
+ }
+
}
class MyOutputLocationManager implements IOutputLocationManager {