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.

MyTrace.java 247B

1234567
  1. aspect MyTrace extends Trace {
  2. public pointcut traced(Object foo): this(foo) && execution(* doit(..));
  3. after(Object o) returning (Object ret): traced(o) {
  4. System.out.println("exit: " /*+ thisJoinPoint.getSignature()*/ + " with " + ret);
  5. }
  6. }