KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > logger > LogKitManageable


1 /*
2  * Copyright (C) The Apache Software Foundation. All rights reserved.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the LICENSE.txt file.
7  */

8 package org.apache.avalon.excalibur.logger;
9
10 /**
11  * LogKitManageable Interface, use this to set the LogKitManagers for child
12  * Components.
13  *
14  * @author <a HREF="mailto:giacomo@apache,org">Giacomo Pati</a>
15  * @version CVS $Revision: 1.2 $ $Date: 2001/12/11 09:53:29 $
16  * @since 4.0
17  */

18 public interface LogKitManageable
19 {
20     /**
21      * Sets the LogKitManager for child components. Can be for special
22      * purpose components, however it is used mostly internally.
23      */

24     void setLogKitManager( final LogKitManager logmanager );
25 }
26
Popular Tags