views:

52

answers:

4

I am curious to know if eclipse has the feature of showing all the list of classes that are extending the current class. This feature is available in INTELLIJ..any ideas.

+1  A: 

I believe you're looking for Type Hierarchy

RC
+5  A: 

The Type Hierarchy View.

The type hierarchy tree shows supertypes, subtypes or both of a given type depending on the selection made in the toolbar.

"Show the Subtype Hierarchy": This command displays the subtypes of the selected class and/or all implementors of the interface in the Hierarchy view. The tree starts at the selected type and displays the result of traversing down the hierarchy

JuanZe
+3  A: 

It's called Type Hierarchy. Default keyboard shortcut key is F4.

There's couple of ways to do this.

1) Open the code, click it's class declaration and press F4 or Right click and select "Open Type Hierarchy F4" menu option.

2) Right Click on the source File, and select "Open Type Hierarchy F4"

PS. For more Eclipse Shortcut key, press Ctrl+Shift+L or select "Help"->"Key Assist.... Ctrl+Shift+L" menu option.

The Elite Gentleman
+6  A: 

Others have mentioned the Type Hierarchy View. There's also the Quick Type Hierarchy: Ctrl + T

Fabian Steeg
Yes, Ctrl+T is a very useful shortcut.
JuanZe
Thanks for the info..
GustlyWind