Java – code navigation in eclipse
I find it difficult to browse the code of a large project involving many classes, XML files, SQL files, etc
I know shift - Ctrl - R opens resources, but my little knowledge is over You can easily browse Java and non java files in eclipse with a keyboard Most of your masters already have a favorite code navigation shortcut list / tips, I think
Please share
thank you!
Solution
Try these shortcuts:
Ctrl Shift r open any asset
CTRL e toggles between open windows
Ctrl Shift t opens the loaded class
CTRL t open type hierarchy
CTRL o is used to view all methods in a class / interface Press it again to display all superclass methods again
CTRL F11 runs the previously run class
ALT shift K, and then run J as a Java application
Press Ctrl and click method / class / interface to open it
See also the Java browsing perspective