Saim Doruklu
Saim Doruklu

Reputation: 474

IntelliJ call hierarchy with dependencies

In IntelliJ, it is possible to decompile single class from a dependency jar and see that there is a function call to our prod class. But this is not useful for finding all calls to the method.

There is an option to include dependencies in call hierarchy feature (Ctrl+Alt+H), but seems like it doesn't work for a specific case.

To use this functionality of searching dependencies, should source code of dependency be available? Does this mean that IntelliJ can index only dependencies with source code?

Thanks

Upvotes: 1

Views: 654

Answers (1)

berserker_11_dhc
berserker_11_dhc

Reputation: 36

Seems that I met the same puzzle like you did, I click the notice upper under the tag "download the source" and it makes! I can use "open call hierarchy" function to see the function hierarchy in source code.

Upvotes: 2

Related Questions