FileTree

class FileTree(val entries: List<FileTreeEntry>) : Node

A visual representation of a file system hierarchy, composed of FileTreeEntry elements.

Parameters

entries

top-level entries of the file tree

See also

Constructors

Link copied to clipboard
constructor(entries: List<FileTreeEntry>)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open override fun <T> accept(visitor: NodeVisitor<T>): T

Accepts a visitor.

Link copied to clipboard

Retrieves the stored media associated with this node, if any.

Link copied to clipboard