Say I want to open java.lang.ClassLoader to see how its methods were implemented.
One method I've found for doing this is by using the Ctrl+Shift+F shortcut, changing Scope to All Places, and typing in the package path above. This will generate a list of classes that reference this package. Clicking a class that uses the package in a field declaration opens up that class, from which I can Ctrl+left_mouse_click the class name, which finally takes me to the desired ClassLoader class.
Is there a less convoluted way of accessing the class?
I've searched on Google, Stackexchange, the IntelliJ documentation, and looked through the menu bar, but haven't found anything so far. I'm sure this must be documented somewhere, but I may not be using the right search terms.

