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.

TraceV1.aj 238B

1234567891011
  1. aspect Trace {
  2. public static boolean expectNoSuchMethodError = false;
  3. before(): execution(void doit(..)) {
  4. System.out.println("enter");
  5. }
  6. after() returning: execution(void doit(..)) {
  7. System.out.println("exit");
  8. }
  9. }