Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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