summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/src/org/aspectj/testing/ajde/CompileCommand.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
index 02da4ab43..57c1c145a 100644
--- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java
+++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
@@ -146,17 +146,22 @@ public class CompileCommand implements ICommand {
};
StructureViewNodeFactory structureViewNodeFactory =
new StructureViewNodeFactory(iconRegistry) {
- protected StructureViewNode createConcreteNode(
+ protected IStructureViewNode createDeclaration(
IProgramElement node,
AbstractIcon icon,
List children) {
return new SwingTreeViewNode(node, icon, children);
}
- protected StructureViewNode createConcreteNode(
+ protected IStructureViewNode createRelationship(
IRelationship node,
AbstractIcon icon) {
return new SwingTreeViewNode(node, icon);
}
+ protected IStructureViewNode createLink(
+ IProgramElement node,
+ AbstractIcon icon) {
+ return new SwingTreeViewNode(node, icon);
+ }
};
Ajde.init(