org.jetbrains.dokka.javadoc.pages.JavadocContentNodes.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javadoc-plugin Show documentation
Show all versions of javadoc-plugin Show documentation
Dokka is an API documentation engine for Kotlin
The newest version!
/*
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package org.jetbrains.dokka.javadoc.pages
import org.jetbrains.dokka.links.DRI
import org.jetbrains.dokka.model.DisplaySourceSet
import org.jetbrains.dokka.model.properties.PropertyContainer
import org.jetbrains.dokka.pages.*
public enum class JavadocContentKind : Kind {
AllClasses, OverviewSummary, PackageSummary, Class, OverviewTree, PackageTree, IndexPage
}
public abstract class JavadocContentNode(
dri: Set,
kind: Kind,
override val sourceSets: Set
) : ContentNode {
override val dci: DCI = DCI(dri, kind)
override val style: Set