Skip to content

Instantly share code, notes, and snippets.

@navi25
Created December 24, 2018 04:43
Show Gist options
  • Save navi25/d533cfc26d58f14f4974ffef6daa87e4 to your computer and use it in GitHub Desktop.
Save navi25/d533cfc26d58f14f4974ffef6daa87e4 to your computer and use it in GitHub Desktop.
A sample greeting generator annotation in Kotlin
package io.navendra.annotation
/**
* Custom Annotation class
* For more information check - "https://kotlinlang.org/docs/reference/annotations.html"
*/
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.SOURCE)
@MustBeDocumented
annotation class GreetingGenerator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment