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