import java.awt.event.*;

/**
 * Ecouteur des boutons du panneau de selection
 * @author Delphine Dard, Aout 2001
 */
public class SelectionListener implements ActionListener {
    SelectionPanel selectionPanel;

    
    public SelectionListener(SelectionPanel selectionPanel){
	this.selectionPanel = selectionPanel;
    }
    
    
    public void actionPerformed(ActionEvent e) {
	if (e.getActionCommand() == "OK")
	    selectionPanel.newValeur();
    }
}
