Eclipse JDT has a 'call hierarchy' feature -- start from a field/method and it recursively finds all references.

IntelliJ also implements this, but it only works from methods. For fields, you can only 'Find Usages', so if you want to dig deeper you have to do additional searches.

Tried 'Dataflow to here', but it's not what I'm looking for.

Am I missing something? Is there a better way to explore field usage in IntelliJ?

link|improve this question

50% accept rate
I'm missing that one amazing feature of eclipse as well. Can't say I'm missing much else in IntelliJ. – xor_eq Dec 1 '11 at 17:07
IntelliJ also implements this, but it only works from methods.?? your question if wrong it only works for fields – jaime May 10 at 0:40
feedback

2 Answers

Use "Find Usages" feature (Alt+F7)

link|improve this answer
The problem is that "Find Usages" isn't recursive, as Eclipse's call hierarchy is. That makes "Find Usages" far less useful. – David Leppik Nov 1 '11 at 19:15
feedback

"Dataflow to here" and "Dataflow from here" give you a recursive view of data flowing in to, and out of, fields (or local variables).

I think that these two features, in fact, are what you're after. If not, can you rephrase the question in less IDE-specific terms? In other words: what information do you want to extract from your codebase?

link|improve this answer
Let's say I have a member field and want to know all of the code that can touch it. I invoke the call hierarchy view, which initially shows the methods accessing it. Then I should be able, without leaving this view, to drill further into each method's callers. (To make this manageable, the IDE searches for a node's accessors only when it is expanded by the user) – valentin.milea Jan 3 at 14:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.