!7 lib 1007242 // TableLayout import layout.TableLayout; p-awt-noconsole { // Create a frame JFrame frame = new JFrame("Example of TableLayout"); frame.setBounds(100, 100, 300, 300); // Create a TableLayout for the frame double border = 10; double size[][] = {{border, 0.10, 20, TableLayout.FILL, 20, 0.20, border}, // Columns {border, 0.20, 20, TableLayout.FILL, 20, 0.20, border}}; // Rows frame.getContentPane().setLayout(new TableLayout(size)); // Create some buttons String label[] = {"Top", "Bottom", "Left", "Right", "Center", "Overlap"}; Button button[] = new Button[label.length]; for (int i = 0; i < label.length; i++) button[i] = new Button(label[i]); // Add buttons frame.add (button[0], "1, 1, 5, 1"); // Top frame.add (button[1], "1, 5, 5, 5"); // Bottom frame.add (button[2], "1, 3 "); // Left frame.add (button[3], "5, 3 "); // Right frame.add (button[4], "3, 3, c, c"); // Center frame.add (button[5], "3, 3, 3, 5"); // Overlap // Show frame frame.show(); }