blob: e8dd00de41f39a5a6b5849cf36806c95d34f717e (
plain)
1
2
3
4
5
6
7
8
9
10
|
aspect CovAspect04 {
pointcut p(): call(Car Super.getCar());
before(): p() {
System.out.println("[call(Car Super.getCar()) matched on '"+thisJoinPoint+":"+thisJoinPoint.getSourceLocation()+"']");
}
}
|