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

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

The newest version!
package net.joeaustin.easyxml

class XmlAttribute(val name: String, val value: String) : BaseXmlComponent() {
    override fun build(sb: StringBuilder, currentPadding: String, buildOptions: XmlBuildOptions) {
        sb.append(" ")
        sb.append(normalizeKey(name))
        sb.append("=")
        sb.append(buildOptions.qualifierCharacter)
        sb.append(escapeText(value))
        sb.append(buildOptions.qualifierCharacter)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy