org.aspectj/tests/java5/pertypewithin/R.java
2005-01-18 11:01:45 +00:00

14 lines
189 B
Java

aspect R pertypewithin(P) {
int ctr = 0;
after(): execution(* runB(..)) {
ctr=ctr+1;
}
after(): execution(* main(..)) {
System.err.println("R reporting "+ctr);
}
}