aboutsummaryrefslogtreecommitdiff
path: root/src/test/test3/Anno2.java
blob: 627c0536659810bf46675fc1f110d4c8e7a659c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
package test3;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
public @interface Anno2 {
    int[] i() default { 1, 2, 3 };
    String[] str() default { "a", "b", "c" };
    ColorName color() default ColorName.RED;
    ColorName[] color2() default { ColorName.BLUE };
}