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