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: /**
09: * See {@link EnhancerTest}
10: * @version $Revision: 1.1 $, $Date: 2004/06/02 20:54:57 $
11: * @author billhorsman
12: * @author $Author: billhorsman $ (current maintainer)
13: */
14: public interface MyInterfaceIF {
15:
16: public void bar();
17:
18: }
19: /*
20: Revision history:
21: $Log: MyInterfaceIF.java,v $
22: Revision 1.1 2004/06/02 20:54:57 billhorsman
23: Learning test class for Enhancer. It fails (or would if the assert was uncommented). Left in for knowledge.
24:
25: */
|