Reputation: 7855
I'd like to find every call to any method of any object of a specified Class in the entire workspace.
I know how to find every call to a specific method and also every call to the constructor of a specific class but not how to find every call to any method.
Upvotes: 0
Views: 230
Reputation: 4202
Open the Outline view (Window > Show View > Outline), select all the methods and hit Ctrl+Alt+H (what you do to find the calls for single method). This works fine with Eclipse Photon.
Upvotes: 2