選択できるのは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. }