import java.lang.annotation.*; /** * An annotation of this type specifies the results of one or more * code reviews for the annotated element */ @Retention(RetentionPolicy.RUNTIME) public @interface Reviews { Review[] value(); }