org.aspectj/tests/features167/overweaving/X.aj
2009-10-31 17:14:35 +00:00

7 lines
106 B
Plaintext

aspect X {
before(): execution(* *(..)) {
System.out.println("AspectX>>"+thisJoinPointStaticPart);
}
}