Using the Annotations reader class
You can retrieve the backport175 annotations as well as regular Java 5 annotations (when running Java 5) at runtime using the API in the Annotations class.
You retreive the annotations by specifying the:
- name of the annotations - this must be the fully qualified name of the annotation interface.
- class or member that is annotated - this is the
java.lang.Class(for class level annotations) or one of the member class in thejava.lang.reflect.*package for member level annotations (methods, fields and constructors)
Here is a sample part of the API:
The Annotation interface
All these methods in the Annotations reader class return an instance of the type org.codehaus.backport175.reader.Annotation.
This class has some useful methods like:
But most likely you want to cast the instance to the correct annotation type (interface).
Example
Here is an example on how to read in the EJB 3 transaction annotation:
Notes
If an annotation has an element with a default value, the reflective API will off course gives you access to it if the
annotated class/member was not specifying it.
