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.

Tracing.aj 449B

12345678910111213141516
  1. public abstract aspect Tracing {
  2. before (Object obj) : execution(* *(..)) && this(obj) {
  3. System.out.println(thisJoinPoint);
  4. }
  5. // before (Object obj) : execution(* *(..)) && this(obj) {
  6. before () : execution(* *(..)) {
  7. System.out.println(thisJoinPointStaticPart);
  8. }
  9. // before (Object obj) : execution(* *(..)) && this(obj) {
  10. before () : execution(* *(..)) && this(Object) {
  11. System.out.println(thisEnclosingJoinPointStaticPart);
  12. }
  13. }