blob: 49aff69966c415dd90576461d23e259f794fed23 (
plain)
1
2
3
4
5
6
7
8
9
|
public class OverloadedPointcutsInClass {
pointcut pc1(): call(* *(..));
pointcut pc1(): execution(* *(..));
pointcut pc2(String s): call(* *(..)) && target(s);
pointcut pc2(StringBuffer sb): call(* *(..)) && target(sb);
}
|