home *** CD-ROM | disk | FTP | other *** search
/ Java 1.2 How-To / JavaHowTo.iso / javafile / ch08 / OneButton_Applet.java < prev   
Text File  |  1998-12-14  |  337b  |  18 lines

  1. import javax.swing.*;
  2. import java.awt.event.*;
  3.  
  4. import java.awt.*;
  5.  
  6. public class OneButton_Applet extends JApplet
  7. {
  8.     public void init()
  9.     {
  10.         JButton button1 = new JButton("Push Me");
  11.  
  12.         setBackground(Color.lightGray);
  13.         getContentPane().add(button1,"Center");
  14.     }//init()
  15.  
  16.  
  17. }//OneButton_Applet
  18.