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.

Aspect2.aj 174B

123456
  1. public aspect Aspect2 {
  2. before () : call(public * Interface.interfaceMethod(..)) {
  3. System.out.println("Aspect2.before() " + thisJoinPoint.getSignature().getName());
  4. }
  5. }