BeginElement

data class BeginElement(val depth: Int, val name: XmlToken.QualifiedName, val attributes: Map<XmlToken.QualifiedName, String> = emptyMap(), val nsDeclarations: List<XmlToken.Namespace> = emptyList()) : XmlToken

The opening of an XML element

Constructors

Link copied to clipboard
constructor(depth: Int, name: String)
constructor(depth: Int, name: String, attributes: Map<XmlToken.QualifiedName, String>)
constructor(depth: Int, name: XmlToken.QualifiedName, attributes: Map<XmlToken.QualifiedName, String> = emptyMap(), nsDeclarations: List<XmlToken.Namespace> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
open override val depth: Int
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun getAttr(qualified: String): String?
Link copied to clipboard
open override fun toString(): String

Inherited functions

Link copied to clipboard

Create a new reader scoped to this element.