Class cryptiX.utils.Loader
All Packages Class Hierarchy This Package Previous Next Index
Class cryptiX.utils.Loader
java.lang.Object
|
+----cryptiX.utils.Loader
- public class Loader
- extends Object
The Loader package can be used to dynamicly load java classes
to the execution environment. In fact, the only purpose of this
class is to in a way circumwent the standard ClassLoader class protection
by providing and interface for direct, runtime controlled class
loading. If the ClassLoader.loadClass() method were public,
this class would be mostly useless.
This class is most usable with dynamic factories. The
Factory class provides an abstract superclass for dynamic
factories.
- See Also:
- Factory
-
loadClass(String)
- Loads and resolves a class with the given name.
loadClass
public static Class loadClass(String name)
- Loads and resolves a class with the given name.
Uses whatever classloader is used to load this particular class.
- Parameters:
- name - fully qualified name (including package) of the class to load.
- Returns:
- the class loaded, or null if an error occured.
All Packages Class Hierarchy This Package Previous Next Index