KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > excalibur > logger > test > TestComponent


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.test;
9
10 import org.apache.avalon.framework.component.Component;
11 import org.apache.avalon.framework.logger.Logger;
12
13 /**
14  * TestComponent.
15  *
16  * @author <a HREF="mailto:giacomo@apache,org">Giacomo Pati</a>
17  * @version CVS $Revision: 1.5 $ $Date: 2001/12/11 09:53:39 $
18  */

19 public interface TestComponent
20     extends Component
21 {
22     String JavaDoc ROLE = "org.apache.avalon.excalibur.logger.test.TestComponent";
23
24     void test( Logger defaultLogger, String JavaDoc message );
25 }
26
Popular Tags