Searched defs:without (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DDefaultLoaderRepository.java12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
105 private static Class<?> load(ClassLoader without, String className) argument
112 return clr.loadClassWithout(without, className);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DClassLoaderRepositorySupport.java12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
149 public final Class<?> loadClassWithout(ClassLoader without, String className) argument
154 "loadClassWithout", className + " without " + without);
157 // without is null => just behave as loadClass
159 if (without == null)
162 // We must try to load the class without the given loader.
164 startValidSearch(without, className);
166 return loadClass(loaders, className, without, null);
168 stopValidSearch(without, classNam
193 loadClass(final LoaderEntry list[], final String className, final ClassLoader without, final ClassLoader stop) argument
[all...]

Completed in 2030 milliseconds