
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JLabel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;


public class EcouteurConnexion implements ActionListener
{
	protected JTextField tf;
	protected JPasswordField pf1;
	protected JLabel label2;
	
	public EcouteurConnexion(JTextField tf,JPasswordField pf1,JLabel label2)
	{
		this.tf=tf;	
		this.pf1=pf1;
		this.label2=label2;
	}
	
	public void actionPerformed (ActionEvent e)
	{
		
		
		seConnecter(tf, pf1);
	}

}
