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.

MyAspect.java 326B

12345678910111213141516
  1. public aspect MyAspect {
  2. // this throws an exception
  3. before(MyAnnotation myAnnotation) :
  4. //call(* *..*.*(..)) &&
  5. call(@MyAnnotation * *(..)) &&
  6. @annotation(myAnnotation) {
  7. }
  8. // this, however, works fine
  9. // before() :
  10. // call(@MyAnnotation * *(..)) {
  11. //
  12. // }
  13. }