Children

annotation class Children

Annotates a Node property as representing child nodes which are contained within the enclosing node. The type of the property must be List<Any>.

@Node(1)
data class Box(
@Children val children: List<Any>,
)

Constructors

Children
Link copied to clipboard
fun Children()

Functions

equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
toString
Link copied to clipboard
open fun toString(): String