1 2 3 4 5 6 7 8 9
// "@Pointcut on Interface method" import org.aspectj.lang.annotation.*; interface A{ @Pointcut("call(* *.*(..))") void someCall(); }