import java.awt.event.ActionEvent; import java.awt.event.ActionListener; /* * Created on 29-jun-2006 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ /** * @author Lennard * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class ActionRobot implements ActionListener { public ZSBScreen s; public ActionRobot(ZSBScreen s) { this.s = s; } public void actionPerformed(ActionEvent e) { } }