Specifications

Sun Services
Java™ Programming Language
Module 10, slide 23 of 37
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
The FlowExample Class
15
16 public void launchFrame() {
17 f.setLayout(new FlowLayout());
18 f.add(button1);
19 f.add(button2);
20 f.add(button3);
21 f.setSize(100,100);
22 f.setVisible(true);
23 }
24
25 public static void main(String args[]) {
26 FlowExample guiWindow = new FlowExample();
27 guiWindow.launchFrame();
28 }
29 }