aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/ataspectj/annotationGen/PCLib.aj
blob: f41c9412f794aa9d3fcd60e1ed90df322e734ba9 (plain)
1
2
3
4
5
6
7
public aspect PCLib {
	
	public pointcut anyMethodExecution() : execution(* *(..));
	
	public pointcut joinPointWithStringArg(String s) : args(s);
	
}