home *** CD-ROM | disk | FTP | other *** search
- import java.awt.*;
-
- public class ButtonExample extends Frame {
- public ButtonExample() {
- setTitle("ButtonExample");
- setLayout(new FlowLayout());
- add(new Button("Push Me"));
- pack();
- show();
- }
- public boolean handleEvent(Event e) {
- if (e.id == Event.WINDOW_DESTROY) {
- System.exit(0);
- }
- return super.handleEvent(e);
- }
- public static void main(String args[]) {
- new ButtonExample();
- }
- }
-