在 Eclipse 项目中查找方法调用

2022-01-20 00:00:00 find java eclipse

我有一个包含方法 myMethod() 的 X 类.我想在当前工作区中的所有项目中找到调用此 myMethod() 的位置.我不能使用任何搜索功能,因为 myMethod() 有几个类,而且它不是静态的.因此,我需要知道此类对象的名称,如果不手动探索项目,这是不可能的.

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 search functions as there are several classes with myMethod(), and it isn't static. Hence I need to know the name of the objects of this class, which isn't possible without manually exploring the projects.

Eclipse 有解决方案吗?

Does Eclipse have a solution for this?

推荐答案

转到 X.java 中的方法,然后从上下文菜单中选择 Open Call Hierarchy.

Go to the method in X.java, and select Open Call Hierarchy from the context menu.

相关文章