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.

12345678910111213
  1. import java.util.List;
  2. public aspect LTWPerthis perthis(this(LTWHelloWorld)) {
  3. pointcut println (List list) :
  4. execution(* println()) && this(list);
  5. before (List list) : println (list) {
  6. System.err.println("LTWPerthis.println(" + thisJoinPointStaticPart + ")");
  7. list.add(getClass().getName());
  8. }
  9. }