blob: 153fd86bf7c1e9d8fedbbad8bd7f9b0564f88efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package pkg;
public class ClassWithNestedAspect {
public void amethod() {
}
static aspect NestedAspect {
pointcut p() : execution(* ClassWithNestedAspect.amethod(..));
before() : p() {
}
}
}
|