tags:

views:

90

answers:

2

So, I've got a routine that can be called from about four different functions. What I want to do is walk up the possible routes that a this routine could have been called from.

I'm using Eclipse. I'm thinking this must be somewhat possible as I know I can do this by hand, albeit slowly.

+7  A: 

In eclipse, right click on the method name and select 'Open call hierarchy'. Usually it's associated with 'Ctrl+Alt+H'.

notnoop
Hey, now I vaguely remember using this by accident at some point....
altCognito
+1  A: 

put your cursor on the method name and hit ctrl-alt-h for the calling methods

akf
Thanks for the quick response, had to choose one.
altCognito
no problem. thanks.
akf