-1

Is there any utility in java to find the list of all implementation class of an interface. Lets say for an interface how many implementation classes are available. so that i can add or tweak the existing code based on the requirements.
Is that feature ships with Eclipse IDE?
Any open source tool available?

Aishu
  • 1,187
  • 6
  • 24
  • 44

1 Answers1

1

In Eclipse you can see Type Hierarchy by selecting your interface/class name and press shortcut key

  1. In windows CTRL + T
  2. In Mac COMMAND + T

Or, you could simply select your interface/class --> right click --> Open Type Hierarchy

to see the list of all implementation classes for selected interface

www.hybriscx.com
  • 1,109
  • 3
  • 22