Skip to content

Instantly share code, notes, and snippets.

@cmota
Created April 1, 2020 19:15
Show Gist options
  • Save cmota/1ce2433e013829c812b441ffcb30b542 to your computer and use it in GitHub Desktop.
Save cmota/1ce2433e013829c812b441ffcb30b542 to your computer and use it in GitHub Desktop.
override fun process(p0: MutableSet<out TypeElement>?, roundEnv: RoundEnvironment?): Boolean {
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "Hello")
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "This is one message")
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "This is another message")
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "And yet another")
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "Well you got the point")
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment