public class Ventana extends JFrame {
JLabel etiqueta;
JButton botonHola, botonAdios;
// …
public Ventana(){
// …
OyenteAccion oyenteBoton = new OyenteAccion();
botonHola.addActionListener(oyenteBoton);
botonAdios.addActionListener(oyenteBoton);
}
class OyenteAccion implements ActionListener {
public void actionPerformed (ActionEvent evento) {
JButton boton = (JButton) evento.getSource();
etiqueta.setText(boton.getText() + " amigo! ");
}
}
}
0 comentarios:
Publicar un comentario