View Javadoc

1   /*
2    * Created on May 23, 2005
3    *
4    * The DefaultConsoleInterceptor merely implements the ConsoleInterceptor
5    * interface but really does nothing - i.e., everything gets sent to System.out
6    * anyway.
7    */
8   package net.sf.tlc.logging.impl;
9   
10  import net.sf.tlc.logging.ConsoleInterceptor;
11  
12  /***
13   * The DefaultConsoleInterceptor merely implements the ConsoleInterceptor
14   * interface but really does nothing - i.e., everything gets sent to System.out
15   * anyway.
16   * 
17   * @author aisrael
18   */
19  public class DefaultConsoleInterceptor implements ConsoleInterceptor {
20  
21      /***
22       * (non-Javadoc)
23       * 
24       * @see net.sf.tlc.logging.ConsoleInterceptor#setupInterception()
25       */
26      public final void setupInterception() {
27      }
28  
29      /***
30       * (non-Javadoc)
31       * 
32       * @see net.sf.tlc.logging.ConsoleInterceptor#giveupInterception()
33       */
34      public final void giveupInterception() {
35      }
36  
37  }