We have an interface that has a child interface. Ie:
public interface GenCalculator extends Serializable {}
public interface SpecialCalculator extends GenCalculator {}
In Eclipse, how can you find all interface-s that extend in this case GenCalculator
?
If I right click, select "Open Type Hierarchy" in the GenCalculator
interface, I only see classes that implement that GenCalculator
interface. I want to see everything - those that implement and those that extend.
We're on Eclipse v.3.2.2.