// // Simple creation of two buttons which each send their // Action to different Listeners // import javax.swing.*; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; public class StubPanel extends JPanel implements ActionListener{ public StubPanel(){ JButton button = new JButton ("XXX"); button.addActionListener(this); add(button); } public void actionPerformed(ActionEvent e){ System.out.println("Event occurred:"); } }