Specifications
Sun Services
Java™ Programming Language
Module 10, slide 31 of 37
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
The GridExample Class
16
17 public void launchFrame() {
18 f.setLayout (new GridLayout(3,2));
19 f.add(b1);
20 f.add(b2);
21 f.add(b3);
22 f.add(b4);
23 f.add(b5);
24 f.add(b6);
25 f.pack();
26 f.setVisible(true);
27 }
28
29 public static void main(String args[]) {
30 GridExample grid = new GridExample();
31 grid.launchFrame();
32 }
33 }










