1 2 3 4 5 6 7 8 9
package pack; public aspect A { pointcut p1() : execution(* *.*(..)); before() : p1() {} }