Java – How to find which classes implement a particular interface in Eclipse

eclipseinterfacejava

I have an application as JAR file with many dependencies. For some reason I need to decompile one of the libraries and open it up with Eclipse. For a given interface in the project, is there a way to find the class(s) that implements it? It may be the case that the interface was implemented in other library that I didn't decompile yet. Is it possible to do this for this kind of classes?

Best Answer

Right-click on the interface, and choose "Open type hierarchy". Then click on "Show the subtype hierarchy".