Package com.sun.mirror.apt
Class AnnotationProcessors
java.lang.Object
com.sun.mirror.apt.AnnotationProcessors
Utilities to create specialized annotation processors.
- Since:
- 1.5
- Author:
- Joseph D. Darcy, Scott Seligman
-
Field Summary
Modifier and TypeFieldDescriptionstatic final AnnotationProcessor
An annotation processor that does nothing and has no state. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic AnnotationProcessor
Constructs a new composite annotation processor.static AnnotationProcessor
Constructs a new composite annotation processor.
-
Field Details
-
NO_OP
An annotation processor that does nothing and has no state. May be used multiple times.- Since:
- 1.5
-
-
Constructor Details
-
AnnotationProcessors
public AnnotationProcessors()
-
-
Method Details
-
getCompositeAnnotationProcessor
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) 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
-