blob: 781e804e6033861281d7938682153e0e3caf4562 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package pack;
import pkg.MyAnnotation;
public aspect WorldAspect {
pointcut exec() : execution(@MyAnnotation * *.*(..));
after() returning : exec() {
System.out.println("world");
}
}
|