home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day27 / AppletTest.java < prev    next >
Text File  |  2002-05-26  |  533b  |  23 lines

  1. import java.applet.Applet;
  2. import java.awt.*;
  3.  
  4. public class AppletTest extends Applet {
  5.   Font f = new Font("TimesRoman", Font.BOLD, 36);
  6.   boolean useRed = true;
  7.  
  8.   public void paint(Graphics screen) {
  9.       screen.setFont(f);
  10.       if (useRed)
  11.          screen.setColor(Color.red);
  12.       else
  13.          screen.setColor(Color.blue);
  14.       screen.drawString("This is an applet!", 5, 30);
  15.   }
  16.  
  17.   public boolean mouseDown(Event evt, int x, int y) {
  18.       useRed = !useRed;
  19.       repaint();
  20.       return true;
  21.   }
  22. }
  23.