/** * ButtonPanel.java * @author Jeff Ondich, 27 October 2010 * * Support class for the LayoutExample.java program. */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class ButtonPanel extends JPanel { private JButton button; public ButtonPanel(Color backgroundColor) { this.setOpaque(true); this.setBackground(backgroundColor); this.button = new JButton("Click me"); this.add(this.button); } public void addButtonListener(ActionListener listener) { this.button.addActionListener(listener); } }