home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap31 / ThreadApplet2.java < prev    next >
Text File  |  1996-03-21  |  549b  |  33 lines

  1. import java.awt.*;
  2. import java.applet.*;
  3. import MyThread;
  4.  
  5. public class ThreadApplet2 extends Applet
  6. {
  7.     MyThread thread;
  8.     String displayStr;
  9.     Font font;
  10.  
  11.     public void start()
  12.     {
  13.         font = new Font("TimesRoman", Font.PLAIN, 72);
  14.         setFont(font);
  15.  
  16.         displayStr = "";
  17.  
  18.         thread = new MyThread(this);
  19.         thread.start();
  20.     }
  21.  
  22.     public void stop()
  23.     {
  24.         thread.stop();
  25.     }
  26.  
  27.     public void paint(Graphics g)
  28.     {
  29.         g.drawString(displayStr, 50, 150);
  30.     }
  31. }
  32.  
  33.