SingleNodeMixedTreeCell

open class SingleNodeMixedTreeCell<I : MixedTreeItem<I>, N : Node>(treeView: MixedTreeView<I>, treeItem: I, val node: Node) : MixedTreeCell<I>

Inheritors

Constructors

Link copied to clipboard
constructor(treeView: MixedTreeView<I>, treeItem: I, node: Node)

Properties

Link copied to clipboard
open override val children: ObservableList<Node>

The base class Node has no children, so this is an empty list.

Link copied to clipboard
val node: Node

Functions

Link copied to clipboard
open override fun nodePrefHeight(): Float

Each subclass of node can determine its preferred height. As most nodes are composed of smaller nodes, this is typically calculated using evalPrefWidth of the child nodes, with extra added for spacing, padding and borders.

Link copied to clipboard
open override fun nodePrefWidth(): Float

Each subclass of node can determine its preferred width. As most nodes are composed of smaller nodes, this is typically calculated using evalPrefWidth of the child nodes, with extra added for spacing, padding and borders.