Java IDE - find all INDIRECT usages/references of a function or class?
Posted
by GreenieMeanie
on Stack Overflow
See other posts from Stack Overflow
or by GreenieMeanie
Published on 2010-05-04T16:47:49Z
Indexed on
2010/05/04
16:58 UTC
Read the original article
Hit count: 235
In Netbeans or in Eclipse, you can use "Find Usages" or "References" from the right click context menu. If a() calls b(), using the functionality from b() will show you a(). However, what I want is to be able to see some kind of tree or have an option to see all usages of a given/class or method, such that if z() calls a() that using the functionality will show both z() and a().
Any IDE plugins or external tools that can do this?
© Stack Overflow or respective owner