001package com.mrivanplays.annotationconfig.core;
002
003import java.lang.annotation.Documented;
004import java.lang.annotation.ElementType;
005import java.lang.annotation.Retention;
006import java.lang.annotation.RetentionPolicy;
007import java.lang.annotation.Target;
008
009/** Annotation, representing the outcome of a repeated {@link Comment} annotation. */
010@Documented
011@Retention(RetentionPolicy.RUNTIME)
012@Target({ElementType.TYPE, ElementType.FIELD})
013public @interface Comments {
014
015  Comment[] value() default {};
016}