diff options
author | aclement <aclement> | 2009-02-12 16:39:24 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-02-12 16:39:24 +0000 |
commit | f191842def35c70291fdb11dc1165878998f3c23 (patch) | |
tree | 5fc8f5cbb7e9e0224d468dcaeb0fe6c0755d5033 /ajde | |
parent | 3765aa957a7fe191eb58e507c7b1b72810f834a9 (diff) | |
download | aspectj-f191842def35c70291fdb11dc1165878998f3c23.tar.gz aspectj-f191842def35c70291fdb11dc1165878998f3c23.zip |
124460: aop.xml used for compilation: AJDT interface support
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java b/ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java index 7d4341e4f..90d363180 100644 --- a/ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java +++ b/ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java @@ -13,6 +13,7 @@ package org.aspectj.ajde.ui.utils; import java.io.File; import java.io.FileFilter; import java.util.ArrayList; +import java.util.Collections; import java.util.HashMap; import java.util.Hashtable; import java.util.List; @@ -54,6 +55,10 @@ public class TestCompilerConfiguration implements ICompilerConfiguration { public void configurationRead() { } + public List getProjectXmlConfigFiles() { + return Collections.EMPTY_LIST; + } + public Set getAspectPath() { return aspectpath; } |