I’m working with Eclipse and 2 API. Is there any way I can get information about which classes use a method of a class? For example, I have gameStarted() method in Game class, I would like to know other classes who use gameStarted() method. I also want to know which classes extend a class and which classes create an instance of a class.
I think I need to know this in order to understand how a part of an API works.
Select the method name in the source code and choose from the context menu
Call hierarchyto explore all callers and their callers,Declarationsfor all places where this method is defined.