Lines Matching refs:loader

53  * parent class loaders. Only if the parent class loader cannot satisfy the
54 * request, the child class loader itself tries to handle it.
69 * classes from the classpath. It is not equal to the bootstrap class loader -
74 * creation of the system class loader until first use. We use a static
81 public static ClassLoader loader = ClassLoader.createSystemClassLoader();
90 * The packages known to the class loader.
99 * loader.
107 * Create the system class loader. Note this is NOT the bootstrap class
108 * loader (which is managed by the VM). We use a null value for the parent
109 * to indicate that the bootstrap loader is our parent.
132 * Returns the system class loader. This is the parent for new
133 * {@code ClassLoader} instances and is typically the class loader used to
137 return SystemClassLoader.loader;
142 * loader's resource lookup algorithm is used to find the resource.
151 return SystemClassLoader.loader.getResource(resName);
156 * The system class loader's resource lookup algorithm is used to find the
167 return SystemClassLoader.loader.getResources(resName);
172 * class loader's resource lookup algorithm is used to find the resource.
182 return SystemClassLoader.loader.getResourceAsStream(resName);
186 * Constructs a new instance of this class with the system class loader as
194 * Constructs a new instance of this class with the specified class loader
198 * The {@code ClassLoader} to use as the new class loader's
357 ClassLoader loader;
359 loader = null;
361 loader = this;
362 return VMClassLoader.findLoadedClass(loader, className);
367 * class loader if necessary.
380 * Returns this class loader's parent.
382 * @return this class loader's parent or {@code null}.
390 * implementation first tries to use the parent class loader to find the
410 * This implementation first uses this class loader's parent to find the
479 * parent class loader.</li>
587 * searched in this class loader.
601 * Returns all the packages known to this class loader.
603 * @return an array with all packages known to this class loader.
701 * Sets the default assertion status for this class loader.
714 * Sets the default assertion status for this class loader to {@code false}
758 * Provides an explicit representation of the boot class loader. It sits at the
759 * head of the class loader chain and delegates requests to the VM's internal