1 2 3 4 5 6 7
package aspect2; import aspect1.Base; aspect Concrete extends Base perthis(where()) { protected pointcut where(): call(* *..C.*(..)); }