01: /*
02: * This software is released under a licence similar to the Apache Software Licence.
03: * See org.logicalcobwebs.proxool.package.html for details.
04: * The latest version is available at http://proxool.sourceforge.net
05: */
06: package org.logicalcobwebs.cglib;
07:
08: import org.apache.commons.logging.Log;
09: 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
20: .getLog(MyConcreteClass.class);
21:
22: MyConcreteClass() {
23: LOG.debug("MyConcreteClass.init");
24: }
25:
26: public String foo() {
27: return "foo";
28: }
29:
30: public void bar() {
31: }
32:
33: }
34:
35: /*
36: Revision history:
37: $Log: MyConcreteClass.java,v $
38: Revision 1.3 2006/01/18 14:40:03 billhorsman
39: Unbundled Jakarta's Commons Logging.
40:
41: Revision 1.2 2004/06/17 21:40:06 billhorsman
42: Log message should be debug not error
43:
44: Revision 1.1 2004/06/02 20:54:57 billhorsman
45: Learning test class for Enhancer. It fails (or would if the assert was uncommented). Left in for knowledge.
46:
47: */
|