bar()を呼び出すメソッドfoo()がある場合、MethodInvocationノード(またはメソッド内のステートメント/式)からfoo()ASTノードを取得するにはどうすればよいですか?たとえば、b.bar()からIMethodfooを知る必要があります。
public void foo()
{
b.bar();
}
bar()を呼び出すメソッドfoo()がある場合、MethodInvocationノード(またはメソッド内のステートメント/式)からfoo()ASTノードを取得するにはどうすればよいですか?たとえば、b.bar()からIMethodfooを知る必要があります。
public void foo()
{
b.bar();
}
私はこのコードを思いついたが、結果を得るためのより良い方法があると思う。
public static IMethod getMethodThatInvokesThisMethod(MethodInvocation node) {
ASTNode parentNode = node.getParent();
while (parentNode.getNodeType() != ASTNode.METHOD_DECLARATION) {
parentNode = parentNode.getParent();
}
MethodDeclaration md = (MethodDeclaration) parentNode;
IBinding binding = md.resolveBinding();
return (IMethod)binding.getJavaElement();
}
JDT / UIには、これを行うためのヘルパーメソッドがあります。を見てみましょうorg.eclipse.jdt.internal.corext.dom.ASTNodes.getParent(ASTNode, int)
もう1つのトリックは、MethodInvocationノードにアクセスする前に、訪問者に発信者情報を保存させることです。
ASTVisitor visitor = new ASTVisitor() {
public boolean visit(MethodDeclaration node) {
String caller = node.getName().toString();
System.out.println("CALLER: " + caller);
return true;
}
public boolean visit(MethodInvocation node) {
String methodName = node.getName().toString();
System.out.println("INVOKE: " + methodName);
AnotherClassタイプの場合:
public class AnotherClass {
public int getValue()
{
return 10;
}
public int moved(int x, int y)
{
if (x > 30)
return getValue();
else
return getValue();
}
}
私は情報を得ることができました:
TYPE(CLASS): AnotherClass
CALLER: getValue
CALLER: moved
INVOKE: getValue
INVOKE: getValue