KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > logicalcobwebs > cglib > MyConcreteClass


1 /*
2  * This software is released under a licence similar to the Apache Software Licence.
3  * See org.logicalcobwebs.proxool.package.html for details.
4  * The latest version is available at http://proxool.sourceforge.net
5  */

6 package org.logicalcobwebs.cglib;
7
8 import org.apache.commons.logging.Log;
9 import org.apache.commons.logging.LogFactory;
10
11 /**
12  * See {@link EnhancerTest}
13  * @version $Revision: 1.3 $, $Date: 2006/01/18 14:40:03 $
14  * @author billhorsman
15  * @author $Author: billhorsman $ (current maintainer)
16  */

17 public class MyConcreteClass implements MyInterfaceIF {
18
19     private static final Log LOG = LogFactory.getLog(MyConcreteClass.class);
20
21     MyConcreteClass() {
22         LOG.debug("MyConcreteClass.init");
23     }
24
25     public String JavaDoc foo() {
26         return "foo";
27     }
28
29     public void bar() {}
30
31 }
32
33 /*
34  Revision history:
35  $Log: MyConcreteClass.java,v $
36  Revision 1.3 2006/01/18 14:40:03 billhorsman
37  Unbundled Jakarta's Commons Logging.
38
39  Revision 1.2 2004/06/17 21:40:06 billhorsman
40  Log message should be debug not error
41
42  Revision 1.1 2004/06/02 20:54:57 billhorsman
43  Learning test class for Enhancer. It fails (or would if the assert was uncommented). Left in for knowledge.
44
45 */
Popular Tags