org.redundent.kotlin.xml.Element.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-xml-builder Show documentation
Show all versions of kotlin-xml-builder Show documentation
A lightweight type safe builder to build xml documents in Kotlin
package org.redundent.kotlin.xml
/**
* Base interface for all elements. You shouldn't have to interact with this interface directly.
* @author Jason Blackwell
*/
interface Element {
/**
* This method handles creating the xml. Used internally
*/
fun render(builder: Appendable, indent: String, printOptions: PrintOptions)
}