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?
You can use the shortcut Ctrl + T to see all implementations of the class.