MCPcopy Index your code
hub / github.com/beanshell/beanshell / getAllNames

Method getAllNames

src/bsh/classpath/BshClassPath.java:320–336  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

318 }
319
320 public String [] getAllNames()
321 {
322 insureInitialized();
323
324 List names = new ArrayList();
325 Iterator it = getPackagesSet().iterator();
326 while( it.hasNext() ) {
327 String pack = (String)it.next();
328 names.addAll(
329 removeInnerClassNames( getClassesForPackage( pack ) ) );
330 }
331
332 if ( nameCompletionIncludesUnqNames )
333 names.addAll( getUnqualifiedNameTable().keySet() );
334
335 return (String [])names.toArray(new String[0]);
336 }
337
338 /**
339 call map(url) for each url in the array

Callers

nothing calls this directly

Calls 9

insureInitializedMethod · 0.95
getPackagesSetMethod · 0.95
removeInnerClassNamesMethod · 0.95
getClassesForPackageMethod · 0.95
iteratorMethod · 0.80
hasNextMethod · 0.80
nextMethod · 0.45
keySetMethod · 0.45

Tested by

no test coverage detected