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.

AnnotAspect.aj 265B

12345678910
  1. @SuppressWarnings("nls")
  2. public aspect AnnotAspect {
  3. declare @field : * AnnotDemo.* : @Demo(myValues={"alfa", "beta", "gamma"});
  4. }
  5. class AnnotDemo {
  6. // that works fine in the java class
  7. //@Demo(myValues={"alfa", "beta", "gamma"})
  8. private int annotateMe;
  9. }