Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Expanding reference searches in eclipse

When I click on a variable, object etc in eclipse and choose "References --> Project" from the context menu, I am presented with a list of methods which reference said object. However if a function has more than one reference the result is shown as:

functionName(signature) (x matches)

Double clicking on the result brings me to the first match, and there appears to be no way to locate the remaining matches. What am I doing wrong?

like image 531
LairdPleng Avatar asked Oct 06 '22 15:10

LairdPleng


1 Answers

Use the buttons with the up/down arrows in the search view, they will bring you to the previous/next search result, independent of the code structure, file location etc.

There is no way to further expand the tree of search results for a Java method.

like image 92
Bananeweizen Avatar answered Oct 10 '22 11:10

Bananeweizen