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.

PointcutsInInterfaces.aj 194B

123456789101112131415
  1. public interface PointcutsInInterfaces {
  2. public pointcut foo() : execution(* *(..));
  3. }
  4. class C {
  5. void foo() {}
  6. }
  7. aspect A {
  8. declare warning : PointcutsInInterfaces.foo() : "aha!";
  9. }