/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package muvis.util;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
*
* @author Ricardo
*/
public class EmptyActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
//TO NOTHING
}
}