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.

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