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 KIND = JoinPointKinds.KIND_METHOD_REDEFINE_JP; 12 13 } 14