You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CovAspect09.aj 236B

12345678910
  1. aspect CovAspect09 {
  2. pointcut p1(): call(FastCar Super.getCar());
  3. before(): p1() {
  4. System.out.println("[call(FastCar Super.getCar()) matched on '"+thisJoinPoint+":"+thisJoinPoint.getSourceLocation()+"']");
  5. }
  6. }