1 package ch.ethz.jvmai; 22 23 import java.lang.reflect.Method ; 24 import java.util.Collection ; 25 26 30 public interface CodeJoinPoint extends JoinPoint 31 { 32 public static String KIND = JoinPointKinds.KIND_CODE_JP; 33 34 44 public Method getMethod(); 45 46 48 public int getByteCodeIndex(); 49 50 51 60 public CodeJoinPoint getEnclosingJoinPoint(); 61 62 66 public Object getAopTag(); 67 68 } 69 | Popular Tags |