简体   繁体   中英

Finding all the concrete classes that implements abstract class in eclipse

Clicking "F3" on the Change class in eclipse,

Change change = refactoring.createChange(monitor);

I could open the Class.java.

public abstract class Change implements IAdaptable {
...

However, I need the concrete Java classes that implements the Change class. How can I find them in eclipse?

您可以使用快捷键Ctrl + T查看该类的所有实现。

Go to Windows -> Open the Outline View -> Right click on the required class -> Select Open Type Hierarchy .

This will open the window with the hierarchy involving that class.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM