Précédent Remonter Suivant


ActionListener
Création d'un BoutonListener.
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

public class BoutonListener implements ActionListener {

    public void actionPerformed(ActionEvent e)
     {
  System.out.println("Click Bouton ");
 }

  }

- 23 -

  Alain Bouju Thread


Précédent Remonter Suivant