KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mx4j > log > FileLogger


1 /*
2  * Copyright (C) MX4J.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the MX4J License version 1.0.
6  * See the terms of the MX4J License in the documentation provided with this software.
7  */

8
9 package mx4j.log;
10
11 /**
12  * This logger logs to a file. <p>
13  * It's used by the ModelMBean implementation. <br>
14  * Since the constructor takes a parameter, cannot be used as prototype for logging redirection.
15  *
16  * @author <a HREF="mailto:biorn_steedom@users.sourceforge.net">Simone Bordet</a>
17  * @version $Revision: 1.3 $
18  */

19 public class FileLogger extends Logger
20 {
21     public FileLogger(String JavaDoc location)
22     {
23         // TODO
24
}
25
26     protected void log(int priority, Object JavaDoc message, Throwable JavaDoc t)
27     {
28         // TODO
29
}
30 }
31
Popular Tags