Skip to content

Instantly share code, notes, and snippets.

@cmota
Created April 1, 2020 19:46
Show Gist options
  • Save cmota/96d4acc717f6a57e164e616818f5fe1d to your computer and use it in GitHub Desktop.
Save cmota/96d4acc717f6a57e164e616818f5fe1d 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\r\n")
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "This is one message\r\n")
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "This is another message\r\n")
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "And yet another\r\n")
processingEnv.messager.printMessage(Diagnostic.Kind.NOTE, "Well you got the point\r\n")
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment