IMethodが呼び出されているIMethod、IType、またはIJavaElementを取得しようとしています。org.eclipse.jdt.internal.corext.callhierarchy.CallHierarchyを調べました。私はこのコードを作成しましたが、ラッパーや場所に何も表示されません。案内してください。
public void getMethodCallers(IMethod[] methods){
CallHierarchy hierarchy = new CallHierarchy();
IJavaSearchScope searchScope= SearchEngine.createWorkspaceScope();
hierarchy.setSearchScope(searchScope);
CallLocation location = hierarchy.getCallLocation(method[0])
MethodWrapper [] wrapper = hierarchy.getCalleeRoots(methods);
}