Search code examples
eclipse

Is there an Eclipse command that lists classes that implement an Interface X?


A shortcut that does that will be helpful. I am both new to Eclipse and navigating a large code base, which makes going back and forth between implementations and interfaces a little bit cumbersome.


Solution

  • You can get that by selecting the interface and hitting F4 (Open Type Hierarchy) or just Right-click on the interface(or even class) name and select Open Type Hierarchy.

    enter image description here