Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created January 27, 2020 01:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BetterProgramming/d7b9de0867799aed37748f98963d2c52 to your computer and use it in GitHub Desktop.
Save BetterProgramming/d7b9de0867799aed37748f98963d2c52 to your computer and use it in GitHub Desktop.
public @interface MyRepeatableAnnotationContainer {
MyRepeatableAnnotation[] value();
}
@Repeatable(MyRepeatableAnnotationContainer.class)
public @interface MyRepeatableAnnotation {
String value() default "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment