| Summary: | Source Not Found error stepping into class Constructor | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | greg <greg.mcfarlane> |
| Component: | Debug | Assignee: | JDT-Debug-Inbox <jdt-debug-inbox> |
| Status: | RESOLVED WORKSFORME | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | darin.eclipse, pwebster, remy.suen |
| Version: | 3.7 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
|
Description
greg
The "source not found" editor is for the class loading code... This works for me: * set breakpoint on instantiation * step into * see source not found for: Thread [main] (Suspended) owns: Launcher$AppClassLoader (id=18) Launcher$AppClassLoader.loadClass(String, boolean) line: 261 Launcher$AppClassLoader(ClassLoader).loadClass(String) line: 251 Launcher$AppClassLoader(ClassLoader).loadClassInternal(String) line: 319 helloworld.main(String[]) line: 17 * step return * step into * **see** source for the constructor This is because the "debugme" class is being loaded, and there is no source for the JRE's classloader. Note, you could configure step filters to avoid this. |