//***************************************************************************** //* //* (c) Copyright 2002. Glub Tech, Incorporated. All Rights Reserved. //* //* $Id: Automation.java 37 2009-05-11 22:46:15Z gary $ //* //***************************************************************************** package com.glub.secureftp.client.framework; public class Automation implements CommandHandler { public void actionPerformed(java.awt.event.ActionEvent e){} public SecureFTPError handleCommand( Command c ) { System.out.println("Record " + c.getCommandName()); return new SecureFTPError(); } }