ru.pocketbyte.locolaser.kotlinmpp.KotlinAbsProxyResourcesConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resource-kotlin-mpp Show documentation
Show all versions of resource-kotlin-mpp Show documentation
Implementation of platform for LocoLaser tool to work with Kotlin MPP projects.
The newest version!
package ru.pocketbyte.locolaser.kotlinmpp
import ru.pocketbyte.locolaser.config.resources.ResourcesConfigBuilderFactory
import ru.pocketbyte.locolaser.config.resources.filter.ResourcesFilter
import ru.pocketbyte.locolaser.kotlinmpp.resource.KotlinAbsProxyResources
import java.io.File
class KotlinAbsProxyResourcesConfig(
workDir: File?,
resourceName: String?,
resourcesDirPath: String?,
interfaceName: String?,
filter: ResourcesFilter?
) : KotlinBaseResourcesConfig(
workDir, resourceName, resourcesDirPath, interfaceName, filter
) {
companion object : ResourcesConfigBuilderFactory {
const val TYPE = "kotlin-abs-proxy"
override fun getBuilder(): KotlinAbsProxyResourcesConfigBuilder {
return KotlinAbsProxyResourcesConfigBuilder()
}
}
override val type = TYPE
override val defaultResourcesPath = "./build/generated/src/commonMain/kotlin/"
override val defaultResourceName = "$DEFAULT_PACKAGE.AbsProxy$DEFAULT_INTERFACE_NAME"
override val resources by lazy {
KotlinAbsProxyResources(
dir = this.resourcesDir,
name = this.resourceName,
interfaceName = this.implements,
resourceFileProvider = this.resourceFileProvider,
filter = this.filter
)
}
}