Reputation: 9297
If I place the cursor on the method playSound()
on this line: soundManager.playSound(1);
Is it possible for Eclipse to open and jump to this method in that class? I pretty sure, but I haven't used Eclipse for some time and forgot some of the shortcuts.
Thanks for the help!
Upvotes: 0
Views: 63
Reputation: 6545
You can always use key assist option in the help menu of eclipse to find the shortcut keys.
Ctrl+move over method : Open Declaration or Implementation
Upvotes: 2