With the help of the information on the link below, I was able to view the source code of my jar file. Eclipse java debugging: source not found
Now my problem is when I debug, F8 doesn't take me to those source files. If I use F5, it takes a lot of time but I can get to the java class of the jar file but not on the line I want to go to.
For example, if class ABC is one of the classes from jar file, during debugging if I want to go to Method1, the debugger will take me to some line in Method2.
Please advice, Thanks.
public class ABC
{
public void Method1()
{
}
public void Method2()
{
}
}