Element

abstract class Element(val name: String)

The base output element type, representing a single file in the output directory. Subclasses must implement _generate to specify how that file should be generated.

Inheritors

Constructors

Link copied to clipboard
constructor(name: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open val count: Int = 1
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open fun generate(location: Path? = null): Path
Link copied to clipboard
open override fun toString(): String