summaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/coverage/foo/UseThisAspectForLinkCheck.aj
blob: 297e1726bd445a50d44ee5bdc264ac31a6ccc11b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package foo;

import fluffy.*;
import fluffy.bunny.*;
import fluffy.bunny.rocks.*;

public aspect UseThisAspectForLinkCheck {
	
	int foo;
	
	pointcut allExecutions(): execution(* *..*(..));
	
	before(): allExecutions() {
		System.err.println("yo");
	}
 
	after(): allExecutions() {
		System.err.println("go");
	}
}