A BshClassPath initialized to the user path from java.class.path
()
| 633 | from java.class.path |
| 634 | */ |
| 635 | public static BshClassPath getUserClassPath() |
| 636 | throws ClassPathException |
| 637 | { |
| 638 | if ( userClassPath == null ) |
| 639 | userClassPath = new BshClassPath( |
| 640 | "User Class Path", getUserClassPathComponents() ); |
| 641 | return userClassPath; |
| 642 | } |
| 643 | |
| 644 | static BshClassPath bootClassPath; |
| 645 | /** |
no test coverage detected