Skip to content

Instantly share code, notes, and snippets.

@igor-brishkoski
Created February 5, 2017 00:38
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 igor-brishkoski/d163176dc03adf52659600ea6bdd2925 to your computer and use it in GitHub Desktop.
Save igor-brishkoski/d163176dc03adf52659600ea6bdd2925 to your computer and use it in GitHub Desktop.
Custom Annotation
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface MethodInfo {
String author() default "Igor Brishkoski";
int revision() default 1;
String comments();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment