import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class BotonEvento implements ActionListener {
 public void actionPerformed(ActionEvent e) {
   System.out.println("Cachando evento..."+
        e.getActionCommand());
 }

}