home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 June
/
PCWorld_2007-06_cd.bin
/
multimedia
/
ppsee
/
PPSeeSetup.exe
/
lib
/
bsh-commands-2.0b4.jar
/
bsh
/
commands
/
getClassPath.bsh
< prev
next >
Wrap
Text File
|
2005-05-23
|
325b
|
14 lines
/**
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();
}