Loader

Godmar Back kaffe@rufus.w3.org
Tue, 9 Jan 2001 12:28:04 -0700 (MST)



loader is null if the class is loaded by the system class or
bootstrap loader.

> 
> Am I accessing it the wrong way OR Is it not implmented yet ? I have try
> to use a few different way to load the Testing class.
>   - Class.forName() method
>   - URLClassLoader object
>   - new Testing()
> 
> but none of them return anything except (nil)
> 

That's cause you have Testing.class in the current directory, which 
is in your classpath and will be examined and loaded first.

	- Godmar