Imagine you are handed a Java Eclipse Project. In this project there are a bunch of classes that call methods on each other, pass parameters and get things done, so the classes withing the project are quite interconnected.
Now then, there is one class in particular that you would like to figure out the workings of. Is there a way in Eclipse, through its tools, that would help me figure out the order in which each of the methods in that particular class are called?
I am aware that I can do System.out.println()
inside each of the methods, and monitor the Console output to figure out the order that way, but that is too time consuming for really big classes.
Is there another way? Thanks