Find methods calls in Eclipse project

后端 未结 6 472

I have a class X containing method myMethod(). I would like to find locations in all projects in my current workspace where this myMethod() is being called. I cannot use any

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-30 21:51

    You can also search for specific methods. For e.g. If you want to search for isEmpty() method of the string class you have to got to - Search -> Java -> type java.lang.String.isEmpty() and in the 'Search For' option use Method.

    You can then select the scope that you require.

提交回复
热议问题