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.

UnlockAspect1.java 254B

123456789
  1. // to be LTW with BasicProgram1
  2. import org.aspectj.lang.annotation.*;
  3. public aspect UnlockAspect1 {
  4. @SuppressAjWarnings("adviceDidNotMatch")
  5. before(): unlock() {
  6. System.err.println("Unlock advice running at "+thisJoinPoint.getSourceLocation());
  7. }
  8. }