ZTreeNode

interface ZTreeNode<T : ZTreeNode<T>>(source)

ZTreeNode interface represents a node in a tree structure.

Type Parameters

T

the type of the node that implements ZTreeNode interface

Inheritors

Properties

Link copied to clipboard
abstract val children: Array<T>
Link copied to clipboard
open val hasParent: Boolean
Link copied to clipboard
open val isRoot: Boolean
Link copied to clipboard
abstract val parent: T?