1 /* 2 * Created on May 23, 2005 3 * 4 * TheLittleContainer ConsoleInterceptor - a class that takes 'ownership' of the 5 * standard output stream and redirects it somewhere. 6 */ 7 package net.sf.tlc.logging; 8 9 /*** 10 * TheLittleContainer ConsoleInterceptor - a class that takes 'ownership' of the 11 * standard output stream and redirects it somewhere. 12 * 13 * @author aisrael 14 */ 15 public interface ConsoleInterceptor { 16 17 /*** 18 * 19 */ 20 void setupInterception(); 21 22 /*** 23 * 24 */ 25 void giveupInterception(); 26 27 }