Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created January 27, 2020 00:53
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/c2b3747c2ea91d32a4584782bf9d2fe8 to your computer and use it in GitHub Desktop.
Save BetterProgramming/c2b3747c2ea91d32a4584782bf9d2fe8 to your computer and use it in GitHub Desktop.
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
@Documented
public @interface MyAnnotation {
String name() default "";
int value();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment