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.

CovAspect02.aj 222B

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