InheritanceNode

data class InheritanceNode(    val dri: DRI,     val children: List<TreeViewPage.InheritanceNode> = emptyList(),     val interfaces: List<DRI> = emptyList(),     val isInterface: Boolean = false)

Constructors

Link copied to clipboard
fun InheritanceNode(    dri: DRI,     children: List<TreeViewPage.InheritanceNode> = emptyList(),     interfaces: List<DRI> = emptyList(),     isInterface: Boolean = false)

Functions

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

Properties

Link copied to clipboard
val children: List<TreeViewPage.InheritanceNode>
Link copied to clipboard
val dri: DRI
Link copied to clipboard
val interfaces: List<DRI>
Link copied to clipboard
val isInterface: Boolean = false