blob: e0450f4242e80f033f5ba133b8aca33206acfead (
plain)
1
2
3
4
5
6
7
8
|
import org.aspectj.lang.annotation.*;
//@RequiredTypes("A")
aspect X extends AA {
@SuppressAjWarnings("adviceDidNotMatch")
before(): execution(* *(..)) { System.out.println("X.before"); }
}
|