home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-12-14 | 337 b | 18 lines |
- import javax.swing.*;
- import java.awt.event.*;
-
- import java.awt.*;
-
- public class OneButton_Applet extends JApplet
- {
- public void init()
- {
- JButton button1 = new JButton("Push Me");
-
- setBackground(Color.lightGray);
- getContentPane().add(button1,"Center");
- }//init()
-
-
- }//OneButton_Applet
-