Finding the actual runtime call tree of a Java Program
Posted
by Chathuranga Chandrasekara
on Stack Overflow
See other posts from Stack Overflow
or by Chathuranga Chandrasekara
Published on 2010-04-06T05:46:42Z
Indexed on
2010/04/06
6:03 UTC
Read the original article
Hit count: 320
Suppose I have a big program that consists of hundreds of methods in it. And according to the nature of input the program flow is getting changed.
Think I want to make a change to the original flow. And it is big hassle to find call hierarchy/ references and understand the flow.
Do I have any solution for this within Eclipse? Or a plugin? As an example, I just need a Log of method names that is in order of time. Then I don't need to worry about the methods that are not relevant with my "given input"
Update : Using debug mode in eclipse or adding print messages are not feasible. The program is sooooo big. :)
© Stack Overflow or respective owner