Question

Is it possible to create a preprocessor like functionality that is available in C and provided by Antenna. Can we use the APT tool to achieve this functionality? Are there any articles or links on similar topics?

Was it helpful?

Solution

Annotations are not meant as a tool to transform code; they just add metadata to code. You can't use annotations for conditional compilation, for example.

As Sun's tutorial on annotations says:

Annotations provide data about a program that is not part of the program itself. They have no direct effect on the operation of the code they annotate.

Wikipedia says:

When Java source code is compiled, annotations can be processed by compiler plug-ins called annotation processors. Processors can produce informational messages or create additional Java source files or resources, which in turn may be compiled and processed, but processors cannot modify the annotated code itself.

So an annotation processor plug-in is not going to be able to give you all of the functionality that the C preprocessor has.

OTHER TIPS

You can perform compile-time tasks using the annotation processing framework. It's not as powerful as a preprocessor, since you can't do things like:

@RunOnlyOn(OS.Mac) public void someMethod() { ... }

Some good use cases for annotation processors are:

  • creating mapping files from annotated classes, e.g. create a hibernate mapping file;
  • creating indexes of classes which have certain annotation, e.g. create testng xml files from a source folder of test classes;
  • enforce compile-time constraints not usually available, e.g. having a no-arg constructor.

Please note that as of Java 6 APT is no longer needed, since all properly declared annotation processors take part in the compilation.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top