Created
April 1, 2020 19:15
-
-
Save cmota/1ce2433e013829c812b441ffcb30b542 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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