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.

DeclareAnnotationsAspect.aj 577B

12345678910111213
  1. public aspect DeclareAnnotationsAspect {
  2. // These should be ignored, because @ToString has SOURCE retention
  3. declare @type : Application : @ToString;
  4. declare @method : * Application.*(..) : @ToString;
  5. declare @constructor : Application.new(..) : @ToString;
  6. declare @field : * Application.* : @ToString;
  7. // These should be applied, because @Marker has RUNTIME retention
  8. declare @type : Application : @Marker;
  9. declare @method : * Application.*(..) : @Marker;
  10. declare @constructor : Application.new(..) : @Marker;
  11. declare @field : * Application.* : @Marker;
  12. }