aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features153/jdtlikehandleprovider/AdviceAndInjar.aj
blob: 68a6ad56a75493ed9ecdeb2a60dca9d41bc4844a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public aspect AdviceAndInjar {
	
	pointcut p() : call(* *.*(..)) && !within(AdviceAndInjar);

	before() : p() {
	}
	
	after() : p() {
	}
	
	pointcut p1() : execution(* *.*(..)) && !within(AdviceAndInjar);
	
	Object around() : p1() {
		return proceed();
	}

}