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.

SizeIssuesAspect.java 353B

1234567891011121314
  1. aspect SizeIssuesAspect {
  2. public pointcut rasScope() : within(*);
  3. pointcut toStringMethod() : execution(* *.toString());
  4. pointcut publicMethods() : rasScope() &&
  5. execution( public * *(..)) && !toStringMethod();
  6. after() returning: publicMethods() {
  7. System.err.println(thisJoinPointStaticPart.getSignature().toLongString());
  8. }
  9. }