All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.pocketbyte.locolaser.kotlinmpp.resource.KotlinAbsKeyValueResources.kt Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package ru.pocketbyte.locolaser.kotlinmpp.resource

import ru.pocketbyte.locolaser.config.resources.ResourceFileProvider
import ru.pocketbyte.locolaser.kotlinmpp.resource.file.KotlinAbsKeyValueResourceFile
import ru.pocketbyte.locolaser.resource.file.ResourceFile
import ru.pocketbyte.locolaser.resource.formatting.FormattingType
import java.io.File

class KotlinAbsKeyValueResources(
    dir: File,
    name: String,
    interfaceName: String?,
    override val formattingType: FormattingType,
    resourceFileProvider: ResourceFileProvider,
    filter: ((key: String) -> Boolean)?
) : KotlinAbsImplementationResources(dir, name, interfaceName, resourceFileProvider, filter) {

    override fun getResourceFiles(locales: Set?): Array {
        return arrayOf(KotlinAbsKeyValueResourceFile(directory,
            this.className, this.classPackage,
            this.interfaceName, this.interfacePackage,
            this.formattingType
        ))
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy