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

Method getUserClassPath

src/bsh/classpath/BshClassPath.java:635–642  ·  view source on GitHub ↗

A BshClassPath initialized to the user path from java.class.path

()

Source from the content-addressed store, hash-verified

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 /**

Callers 4

reloadAllClassesMethod · 0.95
reloadClassesMethod · 0.95
reloadPackageMethod · 0.95
getClassPathMethod · 0.95

Calls 1

Tested by

no test coverage detected