aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java
diff options
context:
space:
mode:
Diffstat (limited to 'ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java')
-rw-r--r--ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java b/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java
index 406e7e5bf..233933a7a 100644
--- a/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java
+++ b/ajde/testsrc/org/aspectj/ajde/NullIdeProperties.java
@@ -33,6 +33,7 @@ public class NullIdeProperties implements ProjectPropertiesAdapter {
private Set sourceRoots;
private Set aspectPath;
private String outJar;
+ private String outputPath = "bin";
public NullIdeProperties(String testProjectPath) {
this.testProjectPath = testProjectPath;
@@ -75,7 +76,11 @@ public class NullIdeProperties implements ProjectPropertiesAdapter {
}
public String getOutputPath() {
- return testProjectPath + "/bin";
+ return testProjectPath + "/" + outputPath;
+ }
+
+ public void setOutputPath(String outputPath) {
+ this.outputPath = outputPath;
}
public String getAjcWorkingDir() {