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.

TraceCalls.java 179B

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