All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generation.Generation.kt Maven / Gradle / Ivy

Go to download

Dokka is an API documentation engine for Kotlin and Java, performing the same function as Javadoc for Java

There is a newer version: 2.0.0
Show newest version
package org.jetbrains.dokka.generation

import org.jetbrains.dokka.Timer

interface Generation {
    fun Timer.generate()
    val generationName: String
}

// This needs to be public for now but in the future it should be replaced with system of checks provided by EP
fun exitGenerationGracefully(reason: String): Nothing {
    throw GracefulGenerationExit(reason)
}

class GracefulGenerationExit(val reason: String) : Throwable()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy