|
Problem debugging SWT/JFace code... -
08-01-2008, 04:31 AM
Hello there,
I’m relatively new in the Eclipse RCP and I’m debugging a simple SWT/JFace stand alone application.
While stepping into Window class constructor -> this(new SameShellProvider(parentShell)); and before actually going to SameShellProvider constructor, I get a “source not found” and a “Edit source Lookup path” button and the following stack on the Debug view:
ClassNotFoundException(Throwable).<init>(String, Throwable) line: 217
ClassNotFoundException(Exception).<init>(String, Throwable) line: not available
ClassNotFoundException.<init>(String) line: not available
ClassLoader.findBootstrapClass(String) line: not available [native method]
Launcher$ExtClassLoader(ClassLoader).findBootstrap Class0(String) line: not available
Launcher$ExtClassLoader(ClassLoader).loadClass(Str ing, boolean) line: not available
Launcher$AppClassLoader(ClassLoader).loadClass(Str ing, boolean) line: not available
Launcher$AppClassLoader.loadClass(String, boolean) line: not available
Launcher$AppClassLoader(ClassLoader).loadClass(Str ing) line: not available
Launcher$AppClassLoader(ClassLoader).loadClassInte rnal(String) line: not available
WidgetWindow(Window).<init>(Shell) line: 263
I have already checked that SWT/JFace sources are loaded in a dependent project…
Any help?
Many thanks,
J
|