home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap26 / ConfigApplet.java < prev    next >
Text File  |  1996-03-13  |  362b  |  22 lines

  1. import java.awt.*;
  2. import java.applet.*;
  3.  
  4. public class ConfigApplet extends Applet
  5. {
  6.     String str;
  7.  
  8.     public void init()
  9.     {
  10.         str = getParameter("text");
  11.  
  12.         Font font = new Font("TimesRoman", Font.BOLD, 24);
  13.         setFont(font);
  14.     }
  15.  
  16.     public void paint(Graphics g)
  17.     {
  18.         g.drawString(str, 50, 50);
  19.     }
  20. }
  21.  
  22.