I have a class B and a super class A.
class A {
void somemethod();
}
class B extends A {
@override
void somemethod() ;
}
It would be nice to have a method where I could quickly navigate from B:something to A:something.
In eclipse I can click on the method name and be offered a number of navigation options one of which is 'navigate to super class' which switches the editor to the same method in the super class i.e A: something.