aboutsummaryrefslogtreecommitdiffstats
path: root/ajde
diff options
context:
space:
mode:
authoraclement <aclement>2009-04-06 19:23:14 +0000
committeraclement <aclement>2009-04-06 19:23:14 +0000
commitc4f8d70ef68455e53f47450df811c84f1c3bc905 (patch)
treee54e624c24114e7c7f237b34c6eb4a9802682d91 /ajde
parent8e813eb537bb67e6061c2847525571304f24bf2d (diff)
downloadaspectj-c4f8d70ef68455e53f47450df811c84f1c3bc905.tar.gz
aspectj-c4f8d70ef68455e53f47450df811c84f1c3bc905.zip
271201: inpath handles
Diffstat (limited to 'ajde')
-rw-r--r--ajde/src/org/aspectj/ajde/Ajde.java3
-rw-r--r--ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java6
2 files changed, 8 insertions, 1 deletions
diff --git a/ajde/src/org/aspectj/ajde/Ajde.java b/ajde/src/org/aspectj/ajde/Ajde.java
index c1a5946da..bd1e77f42 100644
--- a/ajde/src/org/aspectj/ajde/Ajde.java
+++ b/ajde/src/org/aspectj/ajde/Ajde.java
@@ -17,6 +17,7 @@ package org.aspectj.ajde;
import java.awt.Frame;
import java.io.File;
import java.util.Arrays;
+import java.util.Collections;
import java.util.Iterator;
import java.util.List;
@@ -100,7 +101,7 @@ public class Ajde {
INSTANCE.compilerConfig = compilerConfig;
INSTANCE.uiBuildMsgHandler = uiBuildMessageHandler;
INSTANCE.buildProgressMonitor = monitor;
- INSTANCE.asm = AsmManager.createNewStructureModel();
+ INSTANCE.asm = AsmManager.createNewStructureModel(Collections.EMPTY_MAP);
INSTANCE.iconRegistry = iconRegistry;
INSTANCE.ideUIAdapter = ideUIAdapter;
diff --git a/ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java b/ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java
index 532829b76..157f3ecd4 100644
--- a/ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java
+++ b/ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java
@@ -12,7 +12,9 @@ package org.aspectj.ajde.ui.utils;
import java.io.File;
import java.util.ArrayList;
+import java.util.Collections;
import java.util.List;
+import java.util.Map;
import org.aspectj.ajde.core.IOutputLocationManager;
@@ -38,6 +40,10 @@ public class TestOutputLocationManager implements IOutputLocationManager {
public String getUniqueIdentifier() {
return testProjectOutputPath;
}
+
+ public Map getInpathMap() {
+ return Collections.EMPTY_MAP;
+ }
public File getOutputLocationForClass(File compilationUnit) {
initLocations();