Reputation: 6929
I want to jump from an class (method) that implement an interface (method) to the interface method by a keyboard shortcut in Eclipse.
Is there a shortcut to do this?
Upvotes: 2
Views: 324
Reputation: 425
answer to the question described in comments under flafoux answer, but to clearly explain the answer, giving here...
Upvotes: 1
Reputation: 12112
Use Quick Type Hierachy, Ctrl + T.
When this is used while the cursor is inside a method you will get a popup which lets you select among the superclasses which declare the current method. By pressing Ctrl + T again while the popup is still open it lets you select among implemented interfaces which declare the current method.
Upvotes: 0
Reputation: 6929
Goto to "Window" -> "Preferences" -> "General" -> "Keys
There search for "Open Super Implementation" and create a key binding for that.
Upvotes: 2