diff options
| author | Szymon Świstun <sswistun@virtuslab.com> | 2019-12-16 15:20:56 +0100 |
|---|---|---|
| committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-01-08 10:45:08 +0100 |
| commit | c4c992a2050f96871ea44cddbf39367f568bf544 (patch) | |
| tree | 3ee590f1c4b07021aa3bbcb3f976ac2539434a79 /core/src/main/kotlin/model | |
| parent | 290879c011760a27c1daf81bdb362d958123960b (diff) | |
| download | dokka-c4c992a2050f96871ea44cddbf39367f568bf544.tar.gz dokka-c4c992a2050f96871ea44cddbf39367f568bf544.tar.bz2 dokka-c4c992a2050f96871ea44cddbf39367f568bf544.zip | |
module name
Diffstat (limited to 'core/src/main/kotlin/model')
| -rw-r--r-- | core/src/main/kotlin/model/Documentable.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/model/Documentable.kt b/core/src/main/kotlin/model/Documentable.kt index 4bdd41ae..bd3dafda 100644 --- a/core/src/main/kotlin/model/Documentable.kt +++ b/core/src/main/kotlin/model/Documentable.kt @@ -5,7 +5,7 @@ import org.jetbrains.dokka.transformers.descriptors.KotlinTypeWrapper import org.jetbrains.dokka.links.DRI import org.jetbrains.dokka.pages.PlatformData -class Module(val packages: List<Package>) : Documentable() { +class Module(override val name: String?, val packages: List<Package>) : Documentable() { override val dri: DRI = DRI.topLevel override val children: List<Package> = packages override val extra: MutableSet<Extra> = mutableSetOf() |
