查找使用反射或静态代码分析调用方法的潜在方法

时间:2015-08-04 13:58:50

标签: java reflection static-analysis

此问题与 - How do I find the caller of a method using stacktrace or reflection?

不重复

我正在尝试将所有可能的路径分析到我的代码库的特定方法。我想象的是这样的事情:

Class clazz = MyClass.class;
Method method = clazz.getMethod("myMethod");
Method[] possibleCallers = getMethodsThatInvokeMethod(method); // <-- How do I implement this

这是否可以使用反射?如果没有,是否有任何可以提供帮助的开放式库?

更新:为了澄清,我只想在项目中找到给定方法的可能的静态调用。

0 个答案:

没有答案