home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap29 / InterfaceApplet.java < prev    next >
Text File  |  1996-03-18  |  472b  |  24 lines

  1. import java.awt.*;
  2. import java.applet.*;
  3. import MyPackages.Display.DisplayInterface;
  4.  
  5. public class InterfaceApplet extends Applet
  6.     implements DisplayInterface
  7. {
  8.     public void paint(Graphics g)
  9.     {
  10.         Font font = new Font("TimesRoman", Font.PLAIN, 24);
  11.         g.setFont(font);
  12.  
  13.         String s = GetDisplayText();
  14.  
  15.         g.drawString(s, 60, 80);
  16.     }
  17.  
  18.     public String GetDisplayText()
  19.     {
  20.         return "Display Text";
  21.     }
  22. }
  23.  
  24.