Pinch
Pinch

Reputation: 2888

Is there a way to list all classes in a project in Intellij?

As title, does IntelliJ provide an overview of all classes in a project? (for Java). I want to review the design of my project by listing the classes and the hierarchy between them.

Upvotes: 4

Views: 3050

Answers (1)

Bas Leijdekkers
Bas Leijdekkers

Reputation: 26482

You may want to try Analyze | Analyze Dependency Matrix.... The Dependency Matrix shows all classes and dependencies between them.

Upvotes: 3

Related Questions