home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Shareware
/
Comunicatii
/
advwebrank
/
awr.msi
/
disk1.cab
/
bsh_1.2b6.jar
/
bsh
/
commands
/
getClassPath.bsh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2002-05-31
|
314 b
|
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() {
cp = BshClassManager.getClassManager().getClassPath();
return cp.getPathComponents();
}