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

  1. import java.awt.*;
  2. import java.applet.*;
  3.  
  4. public class ConfigApplet2 extends Applet
  5. {
  6.     String str;
  7.     Point position;
  8.  
  9.     public void init()
  10.     {
  11.         String s;
  12.  
  13.         str = getParameter("text");
  14.  
  15.         s = getParameter("typesize");
  16.         int typeSize = Integer.parseInt(s);
  17.  
  18.         s = getParameter("xpos");
  19.         int xpos = Integer.parseInt(s);
  20.  
  21.         s = getParameter("ypos");
  22.         int ypos = Integer.parseInt(s);
  23.  
  24.         position = new Point(xpos, ypos);
  25.  
  26.         Font font = new Font("TimesRoman", Font.BOLD, typeSize);
  27.         setFont(font);
  28.     }
  29.  
  30.     public void paint(Graphics g)
  31.     {
  32.         g.drawString(str, position.x, position.y);
  33.     }
  34. }
  35.  
  36.