I have a Java project in Netbeans with several jar files listed in its library section of properties.
I found a bug in one of the jar files and I want to step into it while debugging.
Here's what I've done so far:
- I've found the source code for the jar file.
- I opened that source as a project in NetBeans (it comes as a NetBeans project)
- I deleted that jar file from the compile-time libraries section of my project.
- I added the new project in the compile-time libraries section of my project using "add project".
- Did a clean and build on the new project, and on my project.
It builds and runs the same as before but I still can't step into the new project's code. But when I try to step into a method in the new project Netbeans says "cannot open (missing source?)". I also tried to set a breakpoint in the new project's method but Netbeans says "Not able to submit breakpoint LineBreakpoint ObjectMakerFactory.java : 203, reason: No executable location available at line 203 in class ...."