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.

BetaA.java 149B

12345678910
  1. package primary;
  2. public aspect BetaA {
  3. pointcut m1call(): call(* m1(..));
  4. before(): m1call() {
  5. System.err.println("m1 got called");
  6. }
  7. }