>
> My question is really this: if getSystemClassLoader() *can* return an actual
> ClassLoader, does it ever do so in Sun's version? And if so, how did that
> ClassLoader get there in the first place?
Is it possible that you're confusing the bootstrap/primordial/"real system"
classloader with the application class loader?
Despite its name, getSystemClassLoader does not return the bootstrap
classloader. It returns the classloader used to load the application,
that is, the application classloader.
At least that's my reading of the documentation.
- Godmar