01: package org.mockejb.interceptor.test;
02:
03: class TestImpl implements TestIface {
04:
05: /**
06: * Implementation of our interface so we can call this method using reflection.
07: */
08: public String echo(String s) {
09: return s;
10: }
11:
12: /**
13: * The most simple method there is
14: */
15: public void test() {
16:
17: }
18:
19: }
|