KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > web > servlet > ServletLog


1 /*
2  * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/web/servlet/ServletLog.java,v 1.7 2000/06/19 14:06:47 alex Exp $
3  *
4  */

5 package com.teamkonzept.web.servlet;
6
7 import javax.servlet.*;
8
9 import com.teamkonzept.web.*;
10
11 public class ServletLog extends TKPseudoOutputStream {
12     ServletContext context;
13
14     public ServletLog( ServletContext context )
15     {
16         this.context = context;
17     }
18
19     public final void write( String JavaDoc s )
20     {
21         context.log( s );
22
23     }
24 }
25
Popular Tags