In eclipse, i want to see where in my workspace is a field actually being used. If I select it and press Ctrl+Shift+G i get all the references to it, but there’s a drawback that if in the JavaDoc section someone mentioned that name, i get search results for those too.
So if i have a field called “user” and i want to see where it’s being used, i get a ton of search results for every method that mentions “user” as a parameter in the javadoc…
Try using Ctrl+Shift+U that will show every line your variable/method occures in current class. Or Ctrl+Alt+H for every method using your variable.