| |
|
| java.lang.Object com.sun.mirror.apt.AnnotationProcessors
AnnotationProcessors | public class AnnotationProcessors (Code) | | Utilities to create specialized annotation processors.
since: 1.5 author: Joseph D. Darcy author: Scott Seligman |
NO_OP | final public static AnnotationProcessor NO_OP(Code) | | An annotation processor that does nothing and has no state.
May be used multiple times.
since: 1.5 |
getCompositeAnnotationProcessor | public static AnnotationProcessor getCompositeAnnotationProcessor(AnnotationProcessor... aps)(Code) | | Constructs a new composite annotation processor. A composite
annotation processor combines multiple annotation processors
into one and functions by invoking each of its component
processors' process methods in sequence.
Parameters: aps - The processors to create a composite of since: 1.5 |
getCompositeAnnotationProcessor | public static AnnotationProcessor getCompositeAnnotationProcessor(Collection<AnnotationProcessor> aps)(Code) | | Constructs a new composite annotation processor. A composite
annotation processor combines multiple annotation processors
into one and functions by invoking each of its component
processors' process methods in the sequence the processors are
returned by the collection's iterator.
Parameters: aps - A collection of processors to create a composite of since: 1.5 |
|
|
|