1 package test3; 2 3 import java.lang.annotation.*; 4 5 @Retention(RetentionPolicy.RUNTIME) 6 public @interface Anno2 { i()7 int[] i() default { 1, 2, 3 }; str()8 String[] str() default { "a", "b", "c" }; color()9 ColorName color() default ColorName.RED; color2()10 ColorName[] color2() default { ColorName.BLUE }; 11 } 12