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

main.net.joeaustin.easyxml.XmlComment.kt Maven / Gradle / Ivy

The newest version!
package net.joeaustin.easyxml

class XmlComment(val text: String) : XmlComponent {
    override fun build(sb: StringBuilder, currentPadding: String, buildOptions: XmlBuildOptions) {
        if (buildOptions.includeComments) {
            sb.append(currentPadding)
            sb.append("")
            } else {
                sb.append("-->")
            }

        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy