Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }