summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authormkersten <mkersten>2003-08-08 21:10:32 +0000
committermkersten <mkersten>2003-08-08 21:10:32 +0000
commit4a1a347b2225e48fa4e9d617e7bf083680967a70 (patch)
tree7e7cc1b56212c86ce562cb7203c6dbf504eaa391 /testing
parent3289df4d8c5a8c8e3ada9c301a0b023dda8524a3 (diff)
downloadaspectj-4a1a347b2225e48fa4e9d617e7bf083680967a70.tar.gz
aspectj-4a1a347b2225e48fa4e9d617e7bf083680967a70.zip
Got advice relationships working.
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(