com.driver733.mapstructfluent.MapperMethodProcessor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Generator of fluent extension functions for mapstruct mappers
The newest version!
package com.driver733.mapstructfluent
import com.squareup.kotlinpoet.FileSpec
import javax.lang.model.element.Element
import javax.lang.model.element.ExecutableElement
interface MapperMethodProcessor {
fun process(fileSpecBuilder: FileSpec.Builder, method: ExecutableElement, mapper: Element)
fun fileSpecBuilder(mapper: Element): FileSpec.Builder
}