io.github.danielTucano.python.PythonScriptBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matplotlib4k Show documentation
Show all versions of matplotlib4k Show documentation
Matplotlib for kotlin: A simple graph plot library for kotlin with powerful python matplotlib
The newest version!
package io.github.danielTucano.python
class PythonScriptBuilder {
companion object {
private val commandLines = mutableListOf()
fun getCommandLines (): List = this.commandLines
fun addCommand(command: String) {
this.commandLines.add(command)
}
fun commandsString(): String {
return commandLines.joinToString(separator = "\n")
}
fun eraseCommands() {
this.commandLines.removeAll {true}
}
}
}