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