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

chapi.app.frontend.Naming.kt Maven / Gradle / Ivy

Go to download

Chapi is A common language meta information convertor, convert different languages to same meta-data model

There is a newer version: 1.5.10
Show newest version
package chapi.app.frontend

fun naming(moduleName: String, nodeName: String): String {
    if (nodeName == "default") {
        return moduleName
    }

    return "${moduleName}::${nodeName}"
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy