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.

MyBar.aj 128B

123456789
  1. package bar;
  2. public aspect MyBar {
  3. before() : call(* main(..)) {
  4. System.out.println("about to call a main method");
  5. }
  6. }