blob: 463203f1e348f40b89925113ea66bf1c979098b0 (
plain)
1
2
3
4
5
6
|
public abstract aspect Base pertypewithin(*) {
before(): execution(* *(..)) && !within(Base+) {
System.err.println("advice fired "+thisJoinPoint.getSourceLocation().getWithinType());
}
}
|