您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }