5

I am looking to get IMethod, IType or IJavaElement in which a IMethod is being called. I explored org.eclipse.jdt.internal.corext.callhierarchy.CallHierarchy. I have written this code but its not giving me anything in wrapper or in location. Please guide me.

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);



}
Ali Arslan
  • 1,027
  • 10
  • 24

1 Answers1

2

This post describes in detail how to achieve this: Java: Find all callers of a method – get all methods that call a particular method

Ali Arslan
  • 1,027
  • 10
  • 24
Heinrich
  • 408
  • 4
  • 13