E-Riz
E-Riz

Reputation: 33034

In IntelliJ is there any package/class browser like Eclipse's Java Browsing perspective?

Being a long-time Eclipse power user, I'm totally addicted to the Smalltalk-style package and class browser it presents in the Java Browsing perspective. Is there anything similar for IntelliJ?

enter image description here

Note: I'm not looking for IntelliJ's Project window; that's more like Eclipse's Package Explorer or Project Explorer.

Upvotes: 9

Views: 2389

Answers (2)

Kaituo Li
Kaituo Li

Reputation: 365

For flattened package view like Eclipse, you can configure intellij like

enter image description here

Upvotes: 1

Ivaylo D. Ivanov
Ivaylo D. Ivanov

Reputation: 3859

You can achieve something similar with opening these tool windows:

  • Structure (View > Tool Windows > Structure);
  • Type Hierarchy (Navigate > Type Hierarchy)
  • Project, but choose its "Packages" view
  • Favorites, and add the whole project as a favorite (either with drag and drop or via right-clicking it)

Then you can rearange the windows to match your preference - see attached screenshot.

enter image description here

Upvotes: 9

Related Questions