選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }