bsh.util.commands.getClassPath.bsh Maven / Gradle / Ivy
The newest version!
/**
Get the current classpath including all user path, extended path, and the
bootstrap JAR file if possible.
*/
bsh.help.getClassPath= "usage: getClassPath()";
import bsh.BshClassManager;
URL [] getClassPath() {
this.cp = this.caller.namespace.getClassManager().getClassPath();
return cp.getPathComponents();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy