Class MapperRenderingProcessor
- java.lang.Object
-
- org.mapstruct.ap.internal.processor.MapperRenderingProcessor
-
- All Implemented Interfaces:
ModelElementProcessor<Mapper,Mapper>
public class MapperRenderingProcessor extends Object implements ModelElementProcessor<Mapper,Mapper>
AModelElementProcessor
which creates a Java source file representing the givenMapper
object, unless the given mapper type is erroneous.- Author:
- Gunnar Morling
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.mapstruct.ap.internal.processor.ModelElementProcessor
ModelElementProcessor.ProcessorContext
-
-
Constructor Summary
Constructors Constructor Description MapperRenderingProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getPriority()
Returns the priority value of this processor which must be between 1 (highest priority) and 10000 (lowest priority).Mapper
process(ModelElementProcessor.ProcessorContext context, TypeElement mapperTypeElement, Mapper mapper)
Processes the given source element, representing a Java bean mapper in one form or another.
-
-
-
Method Detail
-
process
public Mapper process(ModelElementProcessor.ProcessorContext context, TypeElement mapperTypeElement, Mapper mapper)
Description copied from interface:ModelElementProcessor
Processes the given source element, representing a Java bean mapper in one form or another.- Specified by:
process
in interfaceModelElementProcessor<Mapper,Mapper>
- Parameters:
context
- Context providing common infrastructure objects.mapperTypeElement
- The original type element from which the given mapper object is derived.mapper
- The current representation of the bean mapper. Nevernull
(the very first processor receives the original type element).- Returns:
- The resulting representation of the bean mapper; may be the same
as the source representation, e.g. if a given implementation just
performs some sort of validity check. Implementations must never
return
null
except for the very last processor which generates the resulting Java source file.
-
getPriority
public int getPriority()
Description copied from interface:ModelElementProcessor
Returns the priority value of this processor which must be between 1 (highest priority) and 10000 (lowest priority). Processors are invoked in order from highest to lowest priority, starting with the mapping method retrieval processor (priority 1) and finishing with the code generation processor (priority 10000). Processors working on the builtMapper
model must have a priority > 1000.- Specified by:
getPriority
in interfaceModelElementProcessor<Mapper,Mapper>
- Returns:
- The priority value of this processor.
-
-