diff options
author | aclement <aclement> | 2009-02-12 16:39:39 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-02-12 16:39:39 +0000 |
commit | 3320b23dad61397eda6b7e812a3456f55cbfe71d (patch) | |
tree | 739f7579bb21603da4b14e315607ce1291997be8 /ajde.core | |
parent | 5456d4c5c0d17dc007751df618156c9a414273f0 (diff) | |
download | aspectj-3320b23dad61397eda6b7e812a3456f55cbfe71d.tar.gz aspectj-3320b23dad61397eda6b7e812a3456f55cbfe71d.zip |
124460: aop.xml used for compilation: AJDT interface support
Diffstat (limited to 'ajde.core')
-rw-r--r-- | ajde.core/testsrc/org/aspectj/ajde/core/TestCompilerConfiguration.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ajde.core/testsrc/org/aspectj/ajde/core/TestCompilerConfiguration.java b/ajde.core/testsrc/org/aspectj/ajde/core/TestCompilerConfiguration.java index f068770f8..f90ccc039 100644 --- a/ajde.core/testsrc/org/aspectj/ajde/core/TestCompilerConfiguration.java +++ b/ajde.core/testsrc/org/aspectj/ajde/core/TestCompilerConfiguration.java @@ -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(); |