blob: f6d91ec38338344301eb420e30d5efd42779f092 (
plain)
1
2
3
4
5
6
7
8
9
10
|
public aspect MyAspect {
pointcut mypointcut(): execution(* getName()) && !within(MyAspect);
String around(): mypointcut() {
String w = proceed() + " and Harry";
return w;
}
}
|