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 / setClassPath.bsh < prev    next >
Encoding:
Text File  |  2002-05-26  |  344 b   |  17 lines

  1. /**
  2.     Change the classpath to the specified array of directories and/or archives.
  3.     <p>
  4.     See "Class Path Management" for details.
  5.  
  6.     @method void setClassPath( URL [] )
  7. */
  8.  
  9. bsh.help.setClassPath= "usage: setClassPath( URL [] )";
  10.  
  11. import bsh.BshClassManager;
  12.  
  13. void setClassPath( urls ) {
  14.     BshClassManager.getClassManager().setClassPath( urls );
  15. }
  16.  
  17.