( URL path )
| 288 | /** |
| 289 | */ |
| 290 | @Override |
| 291 | public void addClassPath( URL path ) |
| 292 | throws IOException |
| 293 | { |
| 294 | if ( baseLoader == null ) |
| 295 | setClassPath( new URL [] { path } ); |
| 296 | else { |
| 297 | // opportunity here for listener in classpath |
| 298 | baseLoader.addURL( path ); |
| 299 | baseClassPath.add( path ); |
| 300 | classLoaderChanged(); |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | /** |
| 305 | Clear all classloading behavior and class caches and reset to |
nothing calls this directly
no test coverage detected