org.aspectj/tests/java5/covariance/CovAspect09.aj

11 lines
236 B
Plaintext

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