Finding overriding methods

eclipse, java

Solution

Select the method and click Ctrl+T. Alternatively, right-click on it and select `Quick Type Hierachy`.

removed dead ImageShack link - Screenshot

Problem

In Eclipse, can I find which methods override the method declaration on focus now? Scenario: When I'm viewing a method in a base class (which interface), I would like to know where the method is overriden (or implemented). Now I just make the method `final` and see where I get the errors, but it is not perfect. Note: I know about `class hierarchy` views, but I don't want to go through all the subclasses to find which ones use a custom implementation.

Original source