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.

A.aj 194B

12345678910111213
  1. public aspect A {
  2. after () throwing (Throwable th) : execution(* *(..)) {
  3. System.err.println(thisEnclosingJoinPointStaticPart);
  4. }
  5. }
  6. class C1 {
  7. public void anotherMethod() {
  8. }
  9. }