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

ru.curs.adocwrapper.block.list.UList.kt Maven / Gradle / Ivy

The newest version!
package ru.curs.adocwrapper.block.list

class UList : AdocList() {
    override fun toString(): String {
        var returnString = ""
        returnString += "\n${getBlockMetaSyntax()}"
        blocks.forEach { listItem ->
            returnString += listItem.toString()
        }
        return returnString
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy