]> source.dussan.org Git - aspectj.git/commitdiff
124460: aop.xml used for compilation: AJDT interface support
authoraclement <aclement>
Thu, 12 Feb 2009 16:39:39 +0000 (16:39 +0000)
committeraclement <aclement>
Thu, 12 Feb 2009 16:39:39 +0000 (16:39 +0000)
ajde.core/testsrc/org/aspectj/ajde/core/TestCompilerConfiguration.java

index f068770f8582d6489c6b5f1d23d9420e5e9fd713..f90ccc039699e80ecb3c6d27dffadc4016906d77 100644 (file)
@@ -13,6 +13,7 @@ package org.aspectj.ajde.core;
 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;
@@ -52,6 +53,10 @@ public class TestCompilerConfiguration implements ICompilerConfiguration {
                return aspectpath;
        }
 
+       public List getProjectXmlConfigFiles() {
+               return Collections.EMPTY_LIST;
+       }
+
        public String getClasspath() {
                return projectPath + File.pathSeparator + System.getProperty("sun.boot.class.path") + File.pathSeparator
                                + AjcTests.aspectjrtClasspath();