Reputation: 3409
I am using Eclipse to develop Java program and I had to downgrade from JRE/JDK 1.7.x to JRE/JDK 1.6.
When I am stepping through and when it calls a new class, I am either getting source not found or not going into the new class. For example,
//Here, it doesn't go to the Another class
MyClass class = new AnotherClass(value1, value2);
Any idea?
Upvotes: 2
Views: 1720
Reputation: 3567
In general, things to check:
Upvotes: 0
Reputation: 18869
When you try going into 'AnotherClass' and get the Source Not Found, there should be an 'Attach Source' button. Try clicking on it, and when prompted choose the project which contains the source for 'AnotherClass'.
Do this even if AnotherClass is in the current project. If it works, kindly let us know and we'll try to figure out what the original problem might be.
Also, your mileage may vary, but try doing the debugging for a brand new project and see what happens ?
Upvotes: 3