Package org.mapstruct.ap.spi
Interface MapStructProcessingEnvironment
-
- All Known Implementing Classes:
AnnotationProcessorContext
public interface MapStructProcessingEnvironmentMapStruct will provide the implementations of its SPIs with on object implementing this interface so they can use facilities provided by it. It is a subset ofProcessingEnvironment.- Since:
- 1.3
- See Also:
ProcessingEnvironment
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.lang.model.util.ElementsgetElementUtils()Returns an implementation of some utility methods for operating on elementsjavax.lang.model.util.TypesgetTypeUtils()Returns an implementation of some utility methods for operating on types.
-
-
-
Method Detail
-
getElementUtils
javax.lang.model.util.Elements getElementUtils()
Returns an implementation of some utility methods for operating on elements- Returns:
- element utilities
-
getTypeUtils
javax.lang.model.util.Types getTypeUtils()
Returns an implementation of some utility methods for operating on types.- Returns:
- type utilities
-
-