/* * SaveResponseActionListener.java * * Created on 3.2.2009 * */ package netukar.tinybrowser.ui.action; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import netukar.tinybrowser.controller.actions.ActionController; /** * * @author Radovan Netuka */ public class SaveResponseActionListener implements ActionListener { public void actionPerformed(ActionEvent e) { ActionController.getInstance().doSaveResponse(); } }