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 / bind.bsh < prev    next >
Text File  |  2005-05-23  |  209b  |  11 lines

  1. /**
  2.     Bind a bsh object into a particular namespace and interpreter
  3. */
  4. import bsh.This;
  5. import bsh.NameSpace;
  6.  
  7. bind( bsh.This ths, bsh.NameSpace namespace ) {
  8.     This.bind( ths, namespace, this.interpreter );
  9. }
  10.  
  11.