Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I find method calls?

Tags:

java

netbeans

In NetBeans, how can I find out where methods are being called?

I have one particular method in a big project and can't find where its being called.

like image 919
tommy Avatar asked Dec 21 '09 10:12

tommy


2 Answers

There is a Find Usages menu item when you right-click on a method name.

Or place your cursor on the method name and press Alt+F7 (Find Usages) and Alt+SHIFT+u (to show the Find Usages results).

like image 171
miku Avatar answered Sep 28 '22 07:09

miku


Right Click on the Corresponding Project and Click Find. Enter the method name and Click Find

like image 34
Gopi Avatar answered Sep 28 '22 08:09

Gopi