KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > jvmai > MethodRedefineJoinPoint


1 package ch.ethz.jvmai;
2
3 /**
4  * Join point at method boundaries to redefine the method. Similar to the
5  * advice declaration <code>around<code> in AspectJ.
6  *
7  * @author Johann Gyger
8  */

9 public interface MethodRedefineJoinPoint extends CodeJoinPoint {
10
11   public static String JavaDoc KIND = JoinPointKinds.KIND_METHOD_REDEFINE_JP;
12
13 }
14
Popular Tags