You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OverloadedPointcutsInClass.java 236B

123456789
  1. public class OverloadedPointcutsInClass {
  2. pointcut pc1(): call(* *(..));
  3. pointcut pc1(): execution(* *(..));
  4. pointcut pc2(String s): call(* *(..)) && target(s);
  5. pointcut pc2(StringBuffer sb): call(* *(..)) && target(sb);
  6. }