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.

CovAspect10.aj 218B

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