// Written by: Darren Gates & Ray Klefstad // Date: January 2000 // School: U.C. Irvine import java.awt.*; import java.applet.*; public class PanelsExample extends Applet { public void init() { setLayout(new GridLayout(1, 2)); // sub-panel #1 Panel myBluePanel = new Panel(); myBluePanel.setBackground(Color.blue); // sub-panel #2 Panel myRedPanel = new Panel(); myRedPanel.setBackground(Color.red); add(myBluePanel); add(myRedPanel); } }