blob: fc9cc0fb5f0e994afe388fbe0eef2fa77cc9ff4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.andy;
@interface Anno {}
aspect A {
declare @type: com.andy.C: @Anno;
before(): execution(* C.main(..)) {
System.out.println("AspectA>>"+thisJoinPointStaticPart);
}
}
|