views:

67

answers:

2

Is there a way in Eclipse to select a Java class, and then bring up a list of all Java files where that class is used within a project?

+3  A: 

Put the cursor on the class name (works for methods, constructors, fields, etc, too), press Ctrl+Shift+G and enjoy.

gustafc
thanks. how did you do that button effect?
Mike
It's the `<kbd>` tag.
gustafc
+8  A: 

right-click on the class, and select references/Project

For searching the all workspace, CTRL+SHIFT+G

VonC
+1 for distinguishing between workspace and project
ChssPly76