aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/pointcuts/ParameterizedTypesInAtPCDs.aj
blob: d92cc7c73c8a12c85f191e9a639c257fd3215586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public aspect ParameterizedTypesInAtPCDs {
	
	public pointcut atthis() : @this(List<String>);
	
	public pointcut attarget() : @target(List<String>);
	
	public pointcut atargs() : @args(List<String>);
	
	public pointcut atannotation() : @annotation(List<String>);
	
	public pointcut atwithin() : @within(List<String>);
	
	public pointcut atwithincode() : @withincode(List<String>);
	
}