ru.pocketbyte.locolaser.kotlinmpp.KotlinAbsKeyValueResourcesConfigBuilder.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.
package ru.pocketbyte.locolaser.kotlinmpp
import ru.pocketbyte.locolaser.config.resources.ResourceFileProvider
import java.io.File
class KotlinAbsKeyValueResourcesConfigBuilder
: KotlinBaseCustomFormattingResourceConfigBuilder() {
override fun buildConfig(
workDir: File?,
resourceName: String?,
resourcesDir: String?,
resourceFileProvider: ResourceFileProvider?,
filter: ((key: String) -> Boolean)?
): KotlinAbsKeyValueResourcesConfig {
return KotlinAbsKeyValueResourcesConfig(
workDir, resourceName, resourcesDir, implements, formattingType, filter
)
}
}