tags:

views:

23

answers:

2

I have a java class in my project, how can I find all of the places it's being used? Similar to Visual Studios find references.

Thanks.

+3  A: 
  1. Right-click the class in project explorer, or in the editor
  2. Select References -> Project (or the other options, if they fit your case better)
Bozho
+2  A: 

Put the mouse cursor/caret on the class or method name in source code and hit Ctrl+Shift+G.

BalusC