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.

TraceV2.aj 244B

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