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.

DeclareAtMethod.aj 179B

1234567891011121314151617
  1. package foo;
  2. @interface MyAnnotation {
  3. }
  4. public aspect DeclareAtMethod {
  5. declare @method : public * C.*(..) : @MyAnnotation;
  6. }
  7. class C {
  8. public void amethod() {
  9. }
  10. }