Hi, I have just started with java development using Eclipse, when I was debugging this part:
object.methodInAnotherClass(parameters);
The debugger stopped, I understand this won't skip to another class and start debugging that, but what is the other way I can debug my another class?
The same problem is also in CORBA.
So, what is the best way to debug in such cases? By printing the o/p and checking it?
Update:
Q1: How to debug in eclipse when an object is used to invoke a method in some other class? (step into works if a method is called in the same class, so I don't think that's a solution.)
Q2. What is the best way to debug code in a distributed environment like CORBA.