KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dynaop > Interceptor


1 package dynaop;
2
3 /**
4  * Method interception advice.
5  *
6  * @author Bob Lee (crazybob@crazybob.org)
7  */

8 public interface Interceptor {
9
10     /**
11      * Intercepts a method invocation.
12      */

13     Object JavaDoc intercept(Invocation invocation) throws Throwable JavaDoc;
14 }
15
Popular Tags