Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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