1 2 3 4 5 6 7 8 9
// "Codestyle Aspect with @Pointcut" import org.aspectj.lang.annotation.*; aspect A{ @Pointcut("call(* *.*(..))") void someCall(int aNumber){ } }