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.

CovAspect04.aj 226B

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