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: LogIfc.java,v 1.1 2002/11/29 15:18:42 kobit Exp $ 00019 * $Author: kobit $ 00020 * $Date: 2002/11/29 15:18:42 $ 00021 */ 00022 00023 package wttools.remotecons.ifc; 00024 00038 public interface LogIfc { 00039 00048 void log(String msg); 00049 00056 void logException(Exception exc); 00057 00058 }// LogIfc 00059 /* 00060 * Changes in file: 00061 * 00062 * $Log: LogIfc.java,v $ 00063 * Revision 1.1 2002/11/29 15:18:42 kobit 00064 * Refactoring packages, thanks to RefactorIT 00065 * 00066 * Revision 1.4 2002/01/18 14:18:46 kobit 00067 * Next part of javadoc documentation 00068 * 00069 * Revision 1.3 2002/01/17 22:37:44 kobit 00070 * Javadoc comments for classes in progress... 00071 * 00072 * Revision 1.2 2002/01/12 12:31:26 kobit 00073 * Updated CVS keyword in all files 00074 * 00075 * 00076 */
1.3-rc2