home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap31 / lst31_1.txt < prev    next >
Text File  |  1996-03-20  |  82b  |  7 lines

  1. public void start()
  2. {
  3.     thread = new Thread(this);
  4.     thread.start();
  5. }
  6.  
  7.