diff options
author | aclement <aclement> | 2009-02-12 16:40:40 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-02-12 16:40:40 +0000 |
commit | c693350b28918e4c0ef93820188e230fc8a73d6e (patch) | |
tree | ecff561ff2c6102552342ea6b2f231b42936e680 /testing | |
parent | 78e5fb4ad589d7bc83c388a6f3756d32e37b4b79 (diff) | |
download | aspectj-c693350b28918e4c0ef93820188e230fc8a73d6e.tar.gz aspectj-c693350b28918e4c0ef93820188e230fc8a73d6e.zip |
124460: aop.xml used for compilation: AJDT interface support
Diffstat (limited to 'testing')
-rw-r--r-- | testing/src/org/aspectj/testing/ajde/CompileCommand.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java index 06c5ae25b..70d774f48 100644 --- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java +++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java @@ -21,6 +21,7 @@ import java.io.PrintStream; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; +import java.util.Collections; import java.util.List; import java.util.Map; import java.util.Set; @@ -319,6 +320,10 @@ class MyCompilerConfig implements ICompilerConfiguration { return JavaOptions.getDefaultJavaOptions(); } + public List getProjectXmlConfigFiles() { + return Collections.EMPTY_LIST; + } + public String getOutJar() { return outJar; } |