blob: 62d7ab5138c77bf0f44190de9f1939c10397cff0 (
plain)
1
2
3
4
5
6
7
8
|
public privileged aspect TestAspect2 {
pointcut TestInheritance(Test2 test) : target(test) && execution (* Generic1.*(..));
after (Test2 test) : TestInheritance(test) {
System.err.println("Aspects:"+thisJoinPoint);
}
}
|