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

  1. import java.awt.*;
  2.  
  3. public class AWT_Test1 extends Frame {
  4.  
  5.   // Constructor.
  6.   public AWT_Test1(String title) {
  7.       super(title);
  8.       Label lbl = new Label("Hello from Java", Label.CENTER);
  9.       lbl.setFont(new Font("Helvetica", Font.PLAIN, 16));
  10.       add("Center", lbl);
  11.   }
  12.  
  13.   public static void main(String args[]) {
  14.       AWT_Test1 Test = new AWT_Test1("A Java Window");
  15.       Test.resize(350,250);
  16.       Test.show();
  17.   }
  18. }
  19.