Element

open class Element(val type: Int, val from: Int, var to: Int, val children: List<Element> = emptyList())

Inheritors

Constructors

Link copied to clipboard
constructor(type: Int, from: Int, to: Int, children: List<Element> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
val from: Int
Link copied to clipboard
open var to: Int
Link copied to clipboard
val type: Int

Functions

Link copied to clipboard
open fun toTree(nodeSet: NodeSet): Tree
Link copied to clipboard
open fun writeTo(buf: Buffer, offset: Int)