validity.PreGenerationChecker.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dokka-core Show documentation
Show all versions of dokka-core Show documentation
Dokka is an API documentation engine for Kotlin and Java, performing the same function as Javadoc for Java
package org.jetbrains.dokka.validity
interface PreGenerationChecker : () -> PreGenerationCheckerOutput {
override fun invoke(): PreGenerationCheckerOutput
}
data class PreGenerationCheckerOutput(val result: Boolean, val messages: List) {
operator fun plus(pair: Pair>) =
Pair(result && pair.first, messages + pair.second)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy