MCPcopy Create free account
hub / github.com/beanshell/beanshell / map

Method map

src/bsh/classpath/BshClassPath.java:341–350  ·  view source on GitHub ↗

call map(url) for each url in the array

( URL [] urls )

Source from the content-addressed store, hash-verified

339 call map(url) for each url in the array
340 */
341 synchronized void map( URL [] urls )
342 {
343 for(int i=0; i< urls.length; i++)
344 try{
345 map( urls[i] );
346 } catch ( IOException e ) {
347 String s = "Error constructing classpath: " +urls[i]+": "+e;
348 errorWhileMapping( s );
349 }
350 }
351
352 synchronized void map( URL url )
353 throws IOException

Callers 2

addMethod · 0.95
insureInitializedMethod · 0.95

Calls 8

errorWhileMappingMethod · 0.95
classMappingMethod · 0.95
traverseDirForClassesMethod · 0.95
isArchiveFileNameMethod · 0.95
searchJarForClassesMethod · 0.95
mapClassMethod · 0.95
getFileMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected