Class AbstractTypeProcessor
- All Implemented Interfaces:
Processor
- Direct Known Subclasses:
BasicTypeProcessor
,SignaturePrinter
,SourceChecker
,TreePrinter
Type processing occurs in one round after the tool (e.g. Java compiler) analyzes the source (all sources taken as input to the tool and sources generated by other annotation processors).
The tool infrastructure will interact with classes extending this abstract class as follows.
1-3 are identical to the Processor
life cycle. 4-5 are unique to
AbstractTypeProcessor
subclasses.
- If an existing
Processor
object is not being used, to create an instance of a processor the tool calls the no-arg constructor of the processor class. - Next, the tool calls the
init
method with an appropriateProcessingEnvironment
. - Afterwards, the tool calls
getSupportedAnnotationTypes
,getSupportedOptions
, andgetSupportedSourceVersion
. These methods are only called once per run, not on each round. - For each class containing a supported annotation, the tool calls
typeProcess
method on theProcessor
. The class is guaranteed to be type-checked Java code and all the tree type and symbol information is resolved. - Finally, the tool calls the
typeProcessingOver
method on theProcessor
.
The tool is permitted to ask type processors to process a class once it is analyzed before the
rest of classes are analyzed. The tool is also permitted to stop type processing immediately if
any errors are raised, without invoking typeProcessingOver()
.
A subclass may override any of the methods in this class, as long as the general Processor
contract is obeyed, with one notable exception.
process(Set, RoundEnvironment)
may not be overridden, as it is called during the
declaration annotation phase before classes are analyzed.
-
Field Summary
Fields inherited from class javax.annotation.processing.AbstractProcessor
processingEnv
-
Constructor Summary
ModifierConstructorDescriptionprotected
Constructor for subclasses to call. -
Method Summary
Modifier and TypeMethodDescriptioncom.sun.tools.javac.util.Log
Return the compiler log, which contains errors and warnings.void
final boolean
process
(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) The use of this method is obsolete in type processors.abstract void
typeProcess
(TypeElement element, TreePath tree) Processes a fully-analyzed class that contains a supported annotation (seeAbstractProcessor.getSupportedAnnotationTypes()
).void
A method to be called once all the classes are processed.void
A method to be called once before the first call to typeProcess.Methods inherited from class javax.annotation.processing.AbstractProcessor
getCompletions, getSupportedAnnotationTypes, getSupportedOptions, getSupportedSourceVersion, isInitialized
-
Constructor Details
-
AbstractTypeProcessor
protected AbstractTypeProcessor()Constructor for subclasses to call.
-
-
Method Details
-
init
Register a TaskListener that will get called after FLOW.
- Specified by:
init
in interfaceProcessor
- Overrides:
init
in classAbstractProcessor
-
process
The use of this method is obsolete in type processors. The method is called during declaration annotation processing phase only. It registers the names of elements to process.- Specified by:
process
in interfaceProcessor
- Specified by:
process
in classAbstractProcessor
-
typeProcessingStart
public void typeProcessingStart()A method to be called once before the first call to typeProcess.Subclasses may override this method to do any initialization work.
-
typeProcess
Processes a fully-analyzed class that contains a supported annotation (seeAbstractProcessor.getSupportedAnnotationTypes()
).The passed class is always valid type-checked Java code.
- Parameters:
element
- element of the analyzed classtree
- the tree path to the element, with the leaf being aClassTree
-
typeProcessingOver
public void typeProcessingOver()A method to be called once all the classes are processed.Subclasses may override this method to do any aggregate analysis (e.g. generate report, persistence) or resource deallocation.
Method
getCompilerLog()
can be used to access the number of compiler errors. -
getCompilerLog
Return the compiler log, which contains errors and warnings.- Returns:
- the compiler log, which contains errors and warnings
-