00001 /* Package Web Test Tools 00002 * Copyright (C) 2001 "Artur Hefczyc" <kobit@users.sourceforge.net> 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU Lesser General Public License as published 00006 * by the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public License 00015 * along with this program; if not, write to the Free Software Foundation, 00016 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 * 00018 * $Id: CommandHandlerIfc.java,v 1.1 2002/11/29 15:18:37 kobit Exp $ 00019 * $Author: kobit $ 00020 * $Date: 2002/11/29 15:18:37 $ 00021 */ 00022 00023 package wttools.remotecons.ifc; 00024 00045 public interface CommandHandlerIfc { 00046 00061 String handleCommand(String command); 00062 00069 String help(); 00070 00079 String help(String command); 00080 00102 CommandHandlerIfc getInstance(); 00103 00104 }// CommandHandlerIfc 00105 /* 00106 * Changes in file: 00107 * 00108 * $Log: CommandHandlerIfc.java,v $ 00109 * Revision 1.1 2002/11/29 15:18:37 kobit 00110 * Refactoring packages, thanks to RefactorIT 00111 * 00112 * Revision 1.4 2002/01/17 22:37:44 kobit 00113 * Javadoc comments for classes in progress... 00114 * 00115 * Revision 1.3 2002/01/14 17:02:00 kobit 00116 * Changed interface to CommandHandlersIfc 00117 * 00118 * Revision 1.2 2002/01/12 12:31:26 kobit 00119 * Updated CVS keyword in all files 00120 * 00121 * 00122 */