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 179B

123456789
  1. package pAspect;
  2. public aspect Aspect {
  3. public static boolean ranAdvice = false;
  4. before (): target(pClass.Class) && call(* foo(..)) {
  5. ranAdvice = true;
  6. }
  7. }