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.

TraceSets.java 158B

12345
  1. aspect TraceSets extends Trace of eachJVM() {
  2. pointcut targets():
  3. (within(java..*) || within(javax..*) || within(org.aspectj..*)) &&
  4. sets(* *..*.*);
  5. }