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