Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class X containing method myMethod(). I would like to find locations in all projects in my current workspace where this myMethod() is being called. I cannot use any search functions as there are several classes with myMethod(), and it isn't static. Hence I need to know the name of the objects of this class, which isn't possible without manually exploring the projects.

Does Eclipse have a solution for this?

share|improve this question
2  
See also: stackoverflow.com/questions/4650021/… – Thilo Mar 11 '11 at 4:42

4 Answers

up vote 10 down vote accepted

Go to the method in X.java, and select Open Call Hierarchy from the context menu.

share|improve this answer
I did not know this. I was using CTRL-G shortcut and it wasn't working, as in it would not result the method in question being called from another method in the same class. Any ideas why this is? ...nevermind! CTRL-SHIFT-G is for finding references, CTRL-G is for finding declarations! :S – Matthew Doucette Jan 30 '12 at 19:00

select mymethod() and press ctrl+alt+h

share|improve this answer
3  
...which opens call hierarchy. – Matthew Doucette Jan 30 '12 at 19:02

Move the cursor to the method name. Right click and select References > Project or References > Workspace from the pop-up menu.

share|improve this answer

You can also search for specific methods. For e.g. If you want to search for isEmpty() method of the string class you have to got to - Search -> Java -> type java.lang.String.isEmpty() and in the 'Search For' option use Method.

You can then select the scope that you require.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.