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.

Aspect.java 187B

12345678910
  1. package x;
  2. abstract aspect Aspect {
  3. abstract pointcut scope();
  4. before(): call(* foo(..)) && cflow(execution(* toplevel(..))) && scope() {
  5. System.out.println("advice fired");
  6. }
  7. }