com.strumenta.kolasu.lionweb.LanguageGenerator.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kolasu-lionweb-gen Show documentation
Show all versions of kolasu-lionweb-gen Show documentation
Kolasu classes generation for LIonWeb
package com.strumenta.kolasu.lionweb
import com.github.ajalt.clikt.core.CliktCommand
import com.github.ajalt.clikt.core.subcommands
import com.strumenta.kolasu.emf.cli.KolasuLanguageGeneratorCommand
import com.strumenta.kolasu.language.KolasuLanguage
import io.lionweb.lioncore.java.language.Language
class LanguageGenerator(kLanguage: KolasuLanguage, lwLanguage: Language? = null) : CliktCommand() {
override fun run() = Unit
init {
if (lwLanguage == null) {
subcommands(KolasuLanguageGeneratorCommand(kLanguage))
} else {
subcommands(KolasuLanguageGeneratorCommand(kLanguage), LionWebLanguageGeneratorCommand(lwLanguage))
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy