Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/07/2011, 05:48
sirdaiz
 
Fecha de Ingreso: diciembre-2010
Mensajes: 459
Antigüedad: 14 años, 1 mes
Puntos: 21
Respuesta: Como hacer llegar una variable, a un actionPerformed

me parece que te conteste en el post anterior

http://www.forosdelweb.com/f45/evento-del-boton-929353/

De todas formas me confundi en esto,creo q con eso te vale

Código PHP:
Ver original
  1. public class BorrarAction implements ActionListener{
  2. private JButton borrar=new JButton("Boton1");
  3. borrar.addActionListener(this);
  4.  
  5. y en el metodo:
  6.  
  7. public void actionPerformed(ActionEvent e) {
  8. if (e.getSource()==borrar
  9.  
  10.        Aqui haces lo que quieras
  11. }

Saludos