View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3820323#3820323
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3820323 On the subject of control flow, don't forget cflowbelow. Aspectwerkz implemented cflow, but no below. In my limited experience cflowbelow is almost more useful than cflow. Picking out non-recursive calls to certain things is very handy. (Also, once you have cflowbelow, cflow is pretty easy to implement from there.) I did an implementation of cflow for plain java code, and once the private methods were done it looked like: public boolean cflow() { privateCFlowMethod( 1 ); } public boolean cflowbelow() { privateCFlowMethod( 2 ); } Where the numbers are where to start looking on the stack trace. ------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
