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.

LockAspect1.java 248B

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