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 / setClassPath.bsh < prev    next >
Text File  |  2005-05-23  |  321b  |  15 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. void setClassPath( urls ) {
  12.     this.caller.namespace.getClassManager().setClassPath( urls );
  13. }
  14.  
  15.