Source code for /engineering/autohit-2003/src/autohit/common/AutohitLogDrainDefault.javaOriginal file AutohitLogDrainDefault.java
   1 /**
   2  * AUTOHIT 2003
   3  * Copyright Erich P Gatejen (c) 1989,1997,2003,2004
   4  * 
   5  * This program is free software; you can redistribute it and/or modify 
   6  * it under the terms of the GNU General Public License as published by 
   7  * the Free Software Foundation; either version 2 of the License, or (at
   8  * your option) any later version.
   9  * This program is distributed in the hope that it will be useful, but
  10  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12  * more details.
  13  * 
  14  * You should have received a copy of the GNU General Public License along
  15  * with this program; if not, write to the Free Software Foundation, Inc.,
  16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17  *
  18  * Additional license information can be found in the documentation.
  19  * @author Erich P Gatejen
  20  */
  21 package autohit.common;
  22 
  23 /**
  24  * An default subclass of AutohitLogDrain.
  25  * output streams.
  26  * @author Erich P. Gatejen
  27  * @version 1.0
  28  * <i>Version History</i>
  29  * <code>EPG - Rewrite - 28Jul03</code> 
  30  * 
  31  */
  32 public class AutohitLogDrainDefault extends AutohitLogDrain {
  33 
  34 	/**
  35 	 * The subclass uses this to set the Writer.  the Writer is the
  36 	 * field myWriter.
  37 	 * @param id
  38 	 */
  39 	public void setWriter(String id) {
  40 		// use default!
  41 	}
  42 
  43 	/**
  44 	 * The subclass uses this to discard the Writer.  It says this id isn't
  45 	 * being used anymore.
  46 	 * @param id
  47 	 */
  48 	public void discardWriter(String id) {
  49 		// use default!
  50 	}
  51 
  52 
  53 	/**
  54 	 * The subclass should implement this to do any initialization.
  55 	 */
  56 	public void initchain() {
  57 		// don't care!
  58 	}
  59 }