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.

LTWAspect.aj 301B

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