()
| 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 |
nothing calls this directly
no test coverage detected