From ded6e7a9ac8c13f10f7566250ec544324936bb83 Mon Sep 17 00:00:00 2001 From: wisberg Date: Sun, 7 Sep 2003 00:03:24 +0000 Subject: [PATCH] JoinPointCollector.java was moved to sandbox api-clients, and in any case has not been updated for the new asm API's. --- .../extensions/JoinPointCollector.java | 67 ------------------- 1 file changed, 67 deletions(-) delete mode 100644 docs/samples/extensions/JoinPointCollector.java diff --git a/docs/samples/extensions/JoinPointCollector.java b/docs/samples/extensions/JoinPointCollector.java deleted file mode 100644 index 44065c437..000000000 --- a/docs/samples/extensions/JoinPointCollector.java +++ /dev/null @@ -1,67 +0,0 @@ - -package org.aspectj.samples; - -import java.util.*; -import org.aspectj.tools.ajc.Main; - - -import org.aspectj.asm.*; - -/** - * Collects join point information for all advised methods and constructors. Prints results - * to - * - * @author Mik Kersten - */ -public class JoinPointCollector extends Main { - - /** - * - * @param args - */ - public static void main(String[] args) { - String[] newArgs = new String[args.length +1]; - newArgs[0] = "-emacssym"; - for (int i = 0; i < args.length; i++) { - newArgs[i+1] = args[i]; - } - new JoinPointCollector().runMain(newArgs, false); - } - - public void runMain(String[] args, boolean useSystemExit) { - super.runMain(args, useSystemExit); - - ModelWalker walker = new ModelWalker() { - public void preProcess(StructureNode node) { - ProgramElementNode p = (ProgramElementNode)node; - - // first check if it is a method or constructor - if (p.getProgramElementKind().equals(ProgramElementNode.Kind.METHOD)) { - - // now check if it is advsied - for (Iterator it = p.getRelations().iterator(); it.hasNext(); ) { - - RelationNode relationNode = (RelationNode)it.next(); - Relation relation = relationNode.getRelation(); - if (relation == AdviceAssociation.METHOD_RELATION) { - System.out.println("method: " + p.toString() + ", advised by: " + relationNode.getChildren()); - } - } - } - - // code around the fact that constructor advice relationship is on the type - if (p.getProgramElementKind().equals(ProgramElementNode.Kind.CONSTRUCTOR)) { - for (Iterator it = ((ProgramElementNode)p.getParent()).getRelations().iterator(); it.hasNext(); ) { - RelationNode relationNode = (RelationNode)it.next(); - Relation relation = relationNode.getRelation(); - if (relation == AdviceAssociation.CONSTRUCTOR_RELATION) { - System.out.println("constructor: " + p.toString() + ", advised by: " + relationNode.getChildren()); - } - } - } - } - }; - - StructureModelManager.getDefault().getStructureModel().getRoot().walk(walker); - } -} -- 2.39.5