Eclipse Keyboard Shortcut To List All Classes in Project

eclipse, java

Solution

Ctrl+Shift+T: All Types (`Classes`) in open projects in workspace

Ctrl+Shift+R: All Files (java, xml, properties) in open projects in workspace

First one in useful in finding classes `ABC`, `XYZ`, `SABC`:

public class ABC {

class XYZ { }

static class SABC { }

}

Problem

Eclipse has this awesome thing called a Quick Outline CTRL+O. I want something similar but with classes, as I am entering a new project with tons of classes and no clue which source file they come from. Example: Press CTRL+Shift+O and all classes are listed, you start typing it modifies the list, you press enter, it opens that source file. Does this functionality exist in Eclipse? I looked through the `Keys` menu, couldn't find anything, probably not using the right name for it.

Original source