is there some way how to get all dependencies of java objects of my custom application? By Dependency I mean inheritance or that some void is calling another void. Or when some code in one "capsule" needs another "capsule"(Class, void etc.) in constructor.
Example output: ClassA depends ClassB.voidA; ClassA.voidA is dependent ClassC.voidB
etc. I am using netBeans platform.
Thank you for replies.