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 / getResource.bsh < prev    next >
Text File  |  2005-05-23  |  353b  |  15 lines

  1. /**
  2.     Get a resource from the BeanShell classpath.
  3.     This method takes into account modification to the BeanShell class path via
  4.     addClassPath() and setClassPath();
  5. */
  6.  
  7. bsh.help.getResource = "usage: getResource( String name )";
  8.  
  9. import bsh.Interpreter;
  10.  
  11. URL getResource( String path ) 
  12. {
  13.     return this.interpreter.getClassManager().getResource( path );
  14. }
  15.