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.

Test031.java 339B

1234567891011121314
  1. // "@Around given an extension of ProceedingJoinPoint"
  2. import org.aspectj.lang.annotation.*;
  3. import org.aspectj.lang.ProceedingJoinPoint;
  4. interface B extends ProceedingJoinPoint{
  5. }
  6. aspect A{
  7. @Around("call(* *.*(..))")
  8. public Object doNothing(B thisJoinPoint) {
  9. return thisJoinPoint.proceed();
  10. }
  11. }