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.

TypeAnnoOnField.java 153B

123456789
  1. public class TypeAnnoOnField {
  2. @Anno int f1;
  3. java.util.List<@Anno String> f2;
  4. java.util.@Anno List[] f3;
  5. java.util.List<@Anno String>[] f4;
  6. }