From 4a1a347b2225e48fa4e9d617e7bf083680967a70 Mon Sep 17 00:00:00 2001 From: mkersten Date: Fri, 8 Aug 2003 21:10:32 +0000 Subject: Got advice relationships working. --- testing/src/org/aspectj/testing/ajde/CompileCommand.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'testing') 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( -- cgit v1.2.3