Enhanced link search in eclipse

When I click on a variable, object, etc. in eclipse and select "Contexts → Project" from the context menu, I am given a list of methods that reference this object. However, if a function has more than one reference, the result is displayed as:

functionName(signature) (x matches) 

Double-clicking on the result leads me to the first match, and there seems to be no way to find the remaining matches. What am I doing wrong?

+4
source share
1 answer

Use the up / down arrow buttons in the search box, they will lead you to the previous / next search result, regardless of the code structure, file location, etc.

There is no way to further expand the search result tree for the Java method.

+3
source

Source: https://habr.com/ru/post/1434114/


All Articles