I have

@ColumnMetadata(index=1)
...
@ColumnMetadata(index=2)
...
@ColumnMetadata(index=3)
...

And I have to check whether index numbers are unique using APT. I have no idea how to do this. I don't understand tutorials, generally I have problem to find materials on the net.

How to do this? Any tutorials/anything about APT?

link|improve this question

58% accept rate
feedback

1 Answer

You probably want to use the pluggable annotation API, the successor of the apt tool. Here's a short tutorial to get started: http://www.javabeat.net/articles/14-java-60-features-part-2-pluggable-annotation-proce-1.html

This are roughly the steps you need to do to check your annotations:

  1. Create a annotation processor, it should extend AbstractProcessor.
  2. define which annotations to look for, add:
    @SupportedAnnotationTypes(value= {"full.name.of.ColumnMetadata"})
  3. Override the process method.
  4. Use the RoundEnvironment parameter to access the elements of the source code. What elements you need depends on what to do.
    • getRootElements gets you all classes, which you could filter for the elements you want to check. Useful if you analyse code structure without annotations.
    • getElementsAnnotatedWith Use this to get annotated elements only.
  5. Loop over those elements and get the AnnotationMirror. Get and check the values.
  6. If you want to report an error, use the provided Messager with the element. You can create nice compiler error messages in your IDE with this.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.