Lines Matching refs:param

273       * @param  urls  The URLs from which to load classes and resources.
287 * @param urls The URLs from which to load classes and resources.
288 * @param parent The parent class loader for delegation.
302 * @param urls The URLs from which to load classes and resources.
303 * @param parent The parent class loader for delegation.
304 * @param factory The URLStreamHandlerFactory to use when creating URLs.
319 * @param urls The URLs from which to load classes and resources.
320 * @param delegateToCLR True if, when a class is not found in
337 * @param urls The URLs from which to load classes and resources.
338 * @param parent The parent class loader for delegation.
339 * @param delegateToCLR True if, when a class is not found in
356 * @param urls The URLs from which to load classes and resources.
357 * @param parent The parent class loader for delegation.
358 * @param factory The URLStreamHandlerFactory to use when creating URLs.
359 * @param delegateToCLR True if, when a class is not found in
438 * @param url The URL of the text file to be loaded as URL object.
464 * @param url The URL of the text file to be loaded as String object.
745 * @param libdir The directory used by the library loader.
762 * @param server The MBean server in which the m-let will be registered.
763 * @param name The object name of the m-let.
789 * @param registrationDone Indicates whether or not the m-let has
828 * @param out The object output stream to write to.
851 * @param in The object input stream to read from.
878 * @param name The name of the class we want to load.
879 * @param clr The ClassLoaderRepository that will be used to search
909 * @param name The name of the class.
928 * @param name The name of the class that we want to load/find.
929 * @param clr The ClassLoaderRepository that can be used to search
1028 * @param libname The library name.
1213 * @param version The version number of the <CODE>.jar</CODE>
1215 * @param codebase The base URL of the remote <CODE>.jar</CODE> file.
1216 * @param jarfile The name of the <CODE>.jar</CODE> file to be loaded.
1217 * @param mlet The <CODE>MLetContent</CODE> instance that
1238 * @param codebase The <CODE>codebase</CODE>.
1239 * @param filename The name of the file containing the serialized object.
1291 private Object constructParameter(String param, String type) {
1299 oo[0]=param;
1308 return Boolean.valueOf(param);
1310 return new Byte(param);
1312 return new Short(param);
1314 return new Long(param);
1316 return new Integer(param);
1318 return new Float(param);
1320 return new Double(param);
1322 return param;
1324 return param;